I'm using:
var data = $("form :input[value]");
To get all the values in a form and passing the data to an ajax script.
My problem is it doesn't work with RADIO buttons - it always sends the last value for the radio group.
Any ideas on how to get the checked radio button along with all the other form values?