N1CK3RS0N Posted January 24, 2009 Share Posted January 24, 2009 Greetings. I want to make the submit button for a form only clickable after the required fields have been entered in the form. For example, one page I will have a licensing agreement. I want the submit button which will lead them to the next step of the installation to only be clickable after they have checked the box that they agree to the terms. I'm assuming it would have to be some sort of javascript? Have the submit button be disabled="" and once the required field has been completed then it will remove the disabled="" tag? Any good scripts or resources for this? Quote Link to comment Share on other sites More sharing options...
webster08 Posted January 24, 2009 Share Posted January 24, 2009 use a if/else if/else condition or a switch statement to validate Quote Link to comment Share on other sites More sharing options...
haku Posted January 24, 2009 Share Posted January 24, 2009 Yes, you can do this with javascript. But be warned, it is extremely easy to bypass, so if you want everything to be required you will need to perform the same validation on the server side using php or some other server side language. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.