How can I check a radio button on load, based on it's value?
- by Noor
I've got the value of a radio button (r1) and I'm trying to use:
$("input:radio[val=r1]").attr('checked', true);
to check it.
The thing is that I've got three radio buttons in a div,
when I check one, the value of the checked button gets stored.
When I reload the page I want the page to check the radio button that was chosen last.
Thanks!