I have following html.
<fieldset id="fieldset-step_3">
<input type="text" value="2" id="rule_form-lead_time" name="rule_form[lead_time]">
<select class="w50" id="rule_form-operator" name="rule_form[operator]">
<option label="<" value="<"><</option>
<option selected="selected" label=">" value=">">></option>
</select>
<button type="button" id="next" name="next">Next</button>
</fieldset>
I use following jquery code for get values when click next button.
$('#next').click(function () {
var values = $('#fieldset-step_3').serialize();
alert(values);
});
This code working for firefox 8 and opera 11.60 beta. But it does not work for google chrome 15.0.874.121.
Please help me. Give me another idea for get field-set values from jquery.