I have two fields on a form, both are input boxes with the same value in them when the page is loaded, one is hidden.
when the user hits submit, I want to check the boxes and if the value is not different, I want to set the value of the visible box to "" (empty string).
Here is my code (it is iterating over a set of inputs but the basics are what i've described)
$(".edit_functional_area").submit(function() {
$(".value_shown").each(function(i, obj) {
var hidden_obj = $(this).next();
if (hidden_obj.val() == $(this).val() && $(this).val() != "") {
alert($(this).val());
$(this).val("");
alert($(this).val());
}
});
});
Visually, the field is in fact getting blanked out but on the server, in my controller (this is in a rails app) the params comes through with the value still set.
what I want, is for that value to be blank in the params coming to the server so my model doesn't add the values to the database when it doesn't need to.
any ideas?
thanks

return false;will stop the submit from taking place ;) – NewInTheBusiness Jul 31 '12 at 2:22clickhandler that changes the data, then fires asubmitevent when it's done? – andrewdotnich Jul 31 '12 at 2:23