Hi all! First of all, thanks for reading and helping. I'm using the the official website's radio buttonset (
http://jqueryui.com/button/#radio) but the problem comes when i try to change the "checked" attribute in a function. For example:
- function set(value)
- {
- if (value > 100)
- radio1.checked = 'true';
- }
value is changing all the time, but the button doesn't do anything. If i use this with normal radio buttons works perfectly. Is that normal or am i doing something wrong? (i've tried with "true", "checked", even with the setAttribute function)
Thanks!