Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function saveAutomaticReorder()
  2. {
  3. document.AutomaticReorderForm.action = "/store/save_automatic_order.php";
  4. document.AutomaticReorderForm.submit();
  5. }
  6.  
  7. $("#saveAutomaticReorder").click(function() {
  8. $('form[name="AutomaticReorderForm"]').attr("action", "/store/save_automatic_order.php");
  9. $('form[name="AutomaticReorderForm"]').submit();
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement