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
$(toggle).attr('data-icon', 'check');? – dystroy Sep 27 '12 at 18:36console.log(display), that's useless ! log$(toggle).attr('data-icon'). – dystroy Sep 27 '12 at 18:41