ASP MVC 3 - Submit Ajax.BeginForm from Javascript
I have a few ajax forms dotted around my view, and I want one main submit which would submit all other ajax forms.
Is there any recommended way to do this 开发者_JS百科via javascript? (i.e $("myForm).submit();)
Just use the normal $("#myForm").submit(); like detailed in my post, that does it for me.
精彩评论