I have an ASP.Net MVC Ajax.BeginForm that submits and updates my page properly when I click the submit button.
The problem is I need additional events to do the sa
Change -
bind("change", function() { $("#ViewCartPage form").submit() });
to -
bind("change", function() { $("#ViewCartPage form").onsubmit() });