Skip to content Skip to sidebar Skip to footer

How To Change A Specific Jquery Mobile Button Icon With Javascript

I have previoulsy asked a similar question of howto change a button icon, which was answered here How to change a JQuery Mobile button icon with javascript While this indeed helped

Solution 1:

The fundamental thing is jquery selectors.

This will change the icon only language2:

$('a[href=#language2]').buttonMarkup({ icon: "star" });

Post a Comment for "How To Change A Specific Jquery Mobile Button Icon With Javascript"