Reputation: 21
One thing I noticed while using Uniform jQuery (http://uniformjs.com/#example):
Open your Firebug and change radio buttons; you can see that it is adding a class in the <span>
tag.
<span class='checked'>
But the bad thing is that the radio button value is not updating in Firebug.
<input type='radio' name='btn1' />
I used this library and tried to submit the form anyway; to my surprise, it correctly submits the selected radio button value.
Is this a problem within Firebug? If not, how can I see that change affected in the "checked" input field?
Upvotes: 1
Views: 189