Tag Archives: how to use link as submit button

Submitting Form without Using Submit button in JavaScript

June 2, 2012   Javascript, php   Author: 
Forms in website are used to submit values to the server or to give query or to request some thing. Every form will have  a submit button, which is clicked after finishing filling up of form values. After clicked the submit button only form values are get processed. In some instance there many be situation to submit form values without using buttons. This problem can be achieved by java script. READ ALSO: Submit Form Without Submit Button, When Drop-down List box is Selected Submit Form Without Submit Button, When Radio Button is Clicked document.forms["FormName"].submit();  is