Welcome to the LimeSurvey Community Forum

Ask the community, share ideas, and connect with other LimeSurvey users!

Clickable Image as Answer - change label

  • TwentyTwo
  • TwentyTwo's Avatar Topic Author
  • Visitor
  • Visitor
11 years 10 months ago - 11 years 10 months ago #80171 by TwentyTwo
Clickable Image as Answer - change label was created by TwentyTwo
I have once received a nice script from Tpartner for having the functionality of clickable images as answers (no radio buttons and the option to click on the image).

This is just working fine in LS 1.91, but in 1.92 it is not working.
I know there is no support on workarounds but just wondering if someone sees why this is not working anymore.

I have the example here
The link for a working example is here (screen 3)

Maybe I just miss a small thing what is different in 1.92?



And otherwise this is the code:


Code:
 
 
<script type="text/javascript" charset="utf-8"> 
 
function Custom_On_Load(){ 
 
    $(document).ready(function() { 
 
        // Insert the images into the labels 
        $( 'label[for="answer65848X42X146A1"]' ).html('<img title="Option 1" src="../plaatjes/smile.jpg"/>'); 
        $( 'label[for="answer65848X42X146A2"]' ).html('<img title="Option 2" src="../plaatjes/smile.jpg"/>'); 
 
        // A function to handle the behavior of images in select/radio questions 
        function labelImageEffects(qid) { 
 
            ////////// Set your border colors here ///////// 
            var uncheckedBorder = '#fff'; 
            var checkedBorder = '#0F0'; 
            var hoverBorder = '#066'; 
            /////////////////////////////////////////////// 
 
            // Find the initial state of the radio buttons and style labels accordingly 
            $( '#question' + qid + ' td.answer label.answertext' ).each(function(i) { 
                var id = $( this ).attr('for'); 
                if ( $( '#question' + qid + ' td.answer input#' + id + '' ).attr('checked') == true ) { 
                    $(this).css({'border':'10px solid ' + checkedBorder + ''}); 
                } 
                else { 
                    $(this).css({'border':'10px solid ' + uncheckedBorder + ''}); 
                } 
            }); 
 
            // Hide the radio buttons 
            $( '#question' + qid + ' input.radio' ).hide(); 
 
            // Label pointer and width styles 
            // $( '#question' + qid + ' td.answer label.answertext' ).css({'cursor':'pointer', 'width':'auto'}); 
            $( '#question' + qid + ' td.answer label.answertext' ).css({'cursor':'pointer', 'width':'auto', 'height':'auto', 'display':'inline-block'});
 
            // Dennis - extra for the inline-block outline
            // Fix list text-indent 
            $( '#question' + qid + ' li' ).css({'text-indent':'0'});
 
 
            // Hover label border styles 
            $( '#question' + qid + ' td.answer label.answertext' ).hover(function () { // On mouseover 
                var id = $( this ).attr('for'); 
                $(this).css({'border':'10px solid ' + hoverBorder + ''}); 
            },  
            function () { // On mouseout 
                var id = $( this ).attr('for'); 
                if ( $( '#question' + qid + ' td.answer input#' + id + '' ).attr('checked') == true ) { 
                    $(this).css({'border':'10px solid ' + checkedBorder + ''}); 
                } 
                else { 
                    $(this).css({'border':'10px solid ' + uncheckedBorder + ''}); 
                } 
 
            }); 
 
            // Checked label border styles 
            $( '#question' + qid + ' td.answer label.answertext' ).click(function (event) { 
 
                $( '#question' + qid + ' td.answer label.answertext' ).css({'border':'10px solid ' + uncheckedBorder + ''}); 
                $( this ).css({'border':'10px solid ' + checkedBorder + ''}); 
 
                // IE hack to check the affiliated radio button 
                var id = $( this ).attr('for'); 
                $( '#question' + qid + ' td.answer input#' + id + '' ).attr('checked', true); 
 
            }); 
 
        } 
 
        // Call the image effects function 
        labelImageEffects(146); 
 
    }); 
} 
</script>
 
 
Last edit: 11 years 10 months ago by TwentyTwo.
The topic has been locked.
  • Mazi
  • Mazi's Avatar
  • Offline
  • Official LimeSurvey Partner
  • Official LimeSurvey Partner
More
11 years 10 months ago #80193 by Mazi
Replied by Mazi on topic Clickable Image as Answer - change label
Can you also post a link to the non working example?

BTW: There are quite some helpful blog posts at your website such as: www.22surveys.com/blog/?p=258

^- Can you help us by extending the manual and adding some of these examples there?

Best regards/Beste Grüße,
Dr. Marcel Minke
Need Help? We offer professional Limesurvey support: survey-consulting.com
Contact: marcel.minke(at)survey-consulting.com
The topic has been locked.
  • TwentyTwo
  • TwentyTwo's Avatar Topic Author
  • Visitor
  • Visitor
11 years 10 months ago #80201 by TwentyTwo
Replied by TwentyTwo on topic Clickable Image as Answer - change label
thanks Mazi,

I have 1.92 only running on a local webserver.

But it is exact the same script and template I am using at 1.91.
The non working example just shows me the text I have added in the labels.
Seems the following is just not working anymore:
Code:
 $( 'label[for="answer65848X42X146A1"]' ).html('<img title="Option 1" src="../plaatjes/smile.jpg"/>'); 
        $( 'label[for="answer65848X42X146A2"]' ).html('<img title="Option 2" src="../plaatjes/smile.jpg"/>'); 
 


I will add some examples soon to the manual!
The topic has been locked.
  • Mazi
  • Mazi's Avatar
  • Offline
  • Official LimeSurvey Partner
  • Official LimeSurvey Partner
More
11 years 10 months ago #80210 by Mazi
Replied by Mazi on topic Clickable Image as Answer - change label
Sorry, but without being able to compare the different source codes, it is hard to help from here.

Best regards/Beste Grüße,
Dr. Marcel Minke
Need Help? We offer professional Limesurvey support: survey-consulting.com
Contact: marcel.minke(at)survey-consulting.com
The topic has been locked.
  • TwentyTwo
  • TwentyTwo's Avatar Topic Author
  • Visitor
  • Visitor
11 years 10 months ago #80212 by TwentyTwo
Replied by TwentyTwo on topic Clickable Image as Answer - change label
yeah you are right, I realized it too when writing.
in the meantime I have installed 1.92.

Hereby the link:
(at screen3 you will see the images are not loaded)

link 1.92
The topic has been locked.
  • Mazi
  • Mazi's Avatar
  • Offline
  • Official LimeSurvey Partner
  • Official LimeSurvey Partner
More
11 years 10 months ago #80213 by Mazi
Replied by Mazi on topic Clickable Image as Answer - change label
It works fine here using the latest Google Chrome version. I can click the image and the radio button gets ticked.

Which browser did you test?

Did you try clearing your cache?

Best regards/Beste Grüße,
Dr. Marcel Minke
Need Help? We offer professional Limesurvey support: survey-consulting.com
Contact: marcel.minke(at)survey-consulting.com
The topic has been locked.
  • TwentyTwo
  • TwentyTwo's Avatar Topic Author
  • Visitor
  • Visitor
11 years 10 months ago #80214 by TwentyTwo
Replied by TwentyTwo on topic Clickable Image as Answer - change label
I have tested it as well with all browsers, also Chrome.
Please note - it is the third screen/question, the first is just fine.
The second screen doesn't matter.
The topic has been locked.
  • Mazi
  • Mazi's Avatar
  • Offline
  • Official LimeSurvey Partner
  • Official LimeSurvey Partner
More
11 years 10 months ago - 11 years 10 months ago #80236 by Mazi
Replied by Mazi on topic Clickable Image as Answer - change label
Thanks for clarifying. Indeed, only the first question works fine.

Hard to say why at the first one it works fine. Maybe it's just some wrong IDs or the like, I can't say. Tony (tpartner) is the JavaScript expert, maybe he can help you out.

Best regards/Beste Grüße,
Dr. Marcel Minke
Need Help? We offer professional Limesurvey support: survey-consulting.com
Contact: marcel.minke(at)survey-consulting.com
Last edit: 11 years 10 months ago by Mazi.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
11 years 10 months ago - 11 years 10 months ago #80298 by tpartner
Replied by tpartner on topic Clickable Image as Answer - change label
Expression Manager in 1.92 is screwing up your (perfectly valid) JavaScript.

With EM, you need a space after all opening curly braces and before all closing curly braces.

So, for example, this:
Code:
$(this).css({'border':'10px solid ' + checkedBorder + ''});

Needs to be this this:
Code:
$(this).css({ 'border':'10px solid ' + checkedBorder + '' });

Try this to you script supplied above:
Code:
<script type="text/javascript" charset="utf-8">
 
  $(document).ready(function() { 
 
        // Insert the images into the labels 
        $( 'label[for="answer65848X42X146A1"]' ).html('<img title="Option 1" src="../plaatjes/smile.jpg"/>'); 
        $( 'label[for="answer65848X42X146A2"]' ).html('<img title="Option 2" src="../plaatjes/smile.jpg"/>'); 
 
        // A function to handle the behavior of images in select/radio questions 
        function labelImageEffects(qid) { 
 
            ////////// Set your border colors here ///////// 
            var uncheckedBorder = '#fff'; 
            var checkedBorder = '#0F0'; 
            var hoverBorder = '#066'; 
            /////////////////////////////////////////////// 
 
            // Find the initial state of the radio buttons and style labels accordingly 
            $( '#question' + qid + ' td.answer label.answertext' ).each(function(i) { 
                var id = $( this ).attr('for'); 
                if ( $( '#question' + qid + ' td.answer input#' + id + '' ).attr('checked') == true ) { 
                    $(this).css({ 'border':'10px solid ' + checkedBorder + '' }); 
                } 
                else { 
                    $(this).css({ 'border':'10px solid ' + uncheckedBorder + '' }); 
                } 
            }); 
 
            // Hide the radio buttons 
            $( '#question' + qid + ' input.radio' ).hide(); 
 
            // Label pointer and width styles 
            // $( '#question' + qid + ' td.answer label.answertext' ).css({ 'cursor':'pointer', 'width':'auto' }); 
            $( '#question' + qid + ' td.answer label.answertext' ).css({ 'cursor':'pointer', 'width':'auto', 'height':'auto', 'display':'inline-block' });
 
            // Dennis - extra for the inline-block outline
            // Fix list text-indent 
            $( '#question' + qid + ' li' ).css({ 'text-indent':'0' });
 
 
            // Hover label border styles 
            $( '#question' + qid + ' td.answer label.answertext' ).hover(function () { // On mouseover 
                var id = $( this ).attr('for'); 
                $(this).css({ 'border':'10px solid ' + hoverBorder + '' }); 
            },  
            function () { // On mouseout 
                var id = $( this ).attr('for'); 
                if ( $( '#question' + qid + ' td.answer input#' + id + '' ).attr('checked') == true ) { 
                    $(this).css({ 'border':'10px solid ' + checkedBorder + '' }); 
                } 
                else { 
                    $(this).css({ 'border':'10px solid ' + uncheckedBorder + '' }); 
                } 
 
            }); 
 
            // Checked label border styles 
            $( '#question' + qid + ' td.answer label.answertext' ).click(function (event) { 
 
                $( '#question' + qid + ' td.answer label.answertext' ).css({ 'border':'10px solid ' + uncheckedBorder + '' }); 
                $( this ).css({ 'border':'10px solid ' + checkedBorder + '' }); 
 
                // IE hack to check the affiliated radio button 
                var id = $( this ).attr('for'); 
                $( '#question' + qid + ' td.answer input#' + id + '' ).attr('checked', true); 
 
            }); 
 
        } 
 
        // Call the image effects function 
        labelImageEffects(146); 
 
    }); 
 
</script>

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
Last edit: 11 years 10 months ago by tpartner.
The following user(s) said Thank You: TwentyTwo
The topic has been locked.
  • Mazi
  • Mazi's Avatar
  • Offline
  • Official LimeSurvey Partner
  • Official LimeSurvey Partner
More
11 years 10 months ago #80304 by Mazi
Replied by Mazi on topic Clickable Image as Answer - change label

tpartner wrote: Expression Manager in 1.92 is screwing up your (perfectly valid)JavaScript.

With EM, you need a space after all opening curly braces and before all closing curly braces.

Tony, I think we should either put a warning at the JavaScript workarounds page or overwork the Workarounds listed there (or both)!?

What do you think?

Best regards/Beste Grüße,
Dr. Marcel Minke
Need Help? We offer professional Limesurvey support: survey-consulting.com
Contact: marcel.minke(at)survey-consulting.com
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
11 years 10 months ago #80308 by tpartner
Replied by tpartner on topic Clickable Image as Answer - change label
I will go through my workarounds but I would prefer that well-formed, valid JavaScript worked.

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
More
11 years 10 months ago #80311 by mkb
Hi,

I would be very interested in this.... are there instructions for multiple choice. Once the bug they found from my survey gets fixed I would like to implement this.

Thanks,
M
The topic has been locked.

Lime-years ahead

Online-surveys for every purse and purpose