So i have multiple submit button.
<input type="submit" id="addItem" value="Add Item" action="/addItem.php"/>
<input type="submit" id="removeItem" value="Remove Item" action="/removeItem.php/>
<input type="button" id="continue" value="Continue" style="display:none;/>
And than i have a jquery event
$("#addItem").click(function(event) {
event.stopPropgation();
$("#continue").show();
});
Now when i click on continue i want to be able to continue firing of say addItem... (i could have more buttons on that page, and I can't use $(this).closest("form") cause I do not know which item is pressed.
How would i do this?