function change_price(link) { $(link).parents(".MAPChangePriceForm").find(".MAPChangeLinks,.MAPChangeDropdown").toggle(); } function submitNewPrice (form) { $(form).parents(".MAPChangePriceForm").find(".MAPPriceUpdateStatus").html("Saving..."); // $(form).find("input[type='submit']").get(0).disabled = "true"; var formData = convertFormToDataString(form); $.getJSON("/ajax/sales/set_price", formData, function (result) { // $(form).find("input[type='submit']").get(0).disabled = "false"; $(form).parents(".MAPChangePriceForm").find(".MAPPriceUpdateStatus").html("Saved!"); } ); }