Jump to content

Save Button On A Web Form


Recommended Posts

You can add a checkbox to the table as completed and then create couple submission button all over the page just the last button should be customized and should call a function which will check this checkbox so you know the page is completed. To get the submit button code you can use firebug https://getfirebug.com/

 

It should be something like :

 

<input id="Submit" type="submit" name="Submit" class="cbSubmitButton" onmouseover="cbButtonHover(this,'cbSubmitButton_hover');" onmouseout="cbButtonHover(this,'cbSubmitButton');" value="Submit">

 

Last one should also have onclick function

 

<input id="Submit" type="submit" name="Submit" class="cbSubmitButton" onmouseover="cbButtonHover(this,'cbSubmitButton_hover');" onmouseout="cbButtonHover(this,'cbSubmitButton');" value="Inleveren" onclick="Chkbox()">

 

Chkbox is the name of the function which you call to check the checkbox which can go to the header of the page

 

<script>

Chkbox(){

document.getElementById('checkboxID').checked=true;

}

</script>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...