Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is my code:

function togglePOIAndDisplay(toggle){
    var display = $(toggle).attr('data-icon');
    console.log(display);
    if(display == 'minus'){
        $(toggle).attr('data-icon', 'check');
            console.log(display);
    } else {
        $(toggle).attr('data-icon', 'minus');
        removeMarkers(toggle);
    }
}   

It will log minus to the console and go into the first if() block and executes displayAllPOIOfType() correctly, but it will not reflect the change of the value although it gets set correctly. Any ideas why that is, because it obviously reads/sets the attribute correctly.

Is there an update function I need to call? thanks

share|improve this question
where is var toggle defined – RPM Sep 27 '12 at 18:32
toggle is the selector to get the element. it works because it reads the attribute of "data-icon" correctly. so why wouldn't it work the second time? – MJB Sep 27 '12 at 18:34
Are you really sure the attribute isn't set ? Could you log it just after $(toggle).attr('data-icon', 'check'); ? – dystroy Sep 27 '12 at 18:36
it may be because your creating a new element on the fly. you might have to use delegate or on – RPM Sep 27 '12 at 18:36
1  
Hey, you're logging console.log(display), that's useless ! log $(toggle).attr('data-icon'). – dystroy Sep 27 '12 at 18:41
show 4 more comments

1 Answer

up vote 7 down vote accepted

This depends on whether it's a button, or a select, or some other thing that accepts the data-icon attribute. Unfortunately, jQuery Mobile doesn't have great support for dynamically changing things controlled by data-* attributes, so you'll have to adjust the attribute as well as modify the classes on the child elements.

For buttons, something like this ought to work:

$(buttonSelector).attr('data-icon', newIcon);
                 .find('.ui-icon')
                     .addClass('ui-icon-' + newIcon)
                     .removeClass('ui-icon-' + oldIcon);
share|improve this answer
thanks man that actually did it !! <3 – MJB Sep 27 '12 at 19:26
Thanks - useful. I wanted to toggle the data-split-icon in a collapsible and did this: $(this).find(".ui-icon").addClass("ui-icon-newicon").removeClass("ui-icon-oldico‌​n"), where $(this) is the object containing the split button. – Samik R Feb 7 at 6:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.