You need to sign in to do that
Don't have an account?

Two forms in VF page
<apex:form id="form1"> .
some inputfields are here...
.. </apex:form>
<apex:form id="form2">
<apex:commandButton value="Save & Continue" action="{!saveApplication}" id="saveButton" />
</apex:form>
<script> jQuery('[id$=saveButton]').click(function(){
jQuery('[id$=form1]').submit(); });
</script>
This is not working for me. Please make me resolved
some inputfields are here...
.. </apex:form>
<apex:form id="form2">
<apex:commandButton value="Save & Continue" action="{!saveApplication}" id="saveButton" />
</apex:form>
<script> jQuery('[id$=saveButton]').click(function(){
jQuery('[id$=form1]').submit(); });
</script>
This is not working for me. Please make me resolved
Its GOing to submit as two different actions and not as a single action