complete user registration form validation using java script with example
It is important to validate the form submitted by the user because it can have inappropriate values. So validation is […]
It is important to validate the form submitted by the user because it can have inappropriate values. So validation is […]
How to create sticky navigation menu Many websites use a “sticky” feature in their main navigation menu. The menu scrolls […]
Javascript code for validate radio button <html> <head> <script> function Submit(){ if(document.form.radiobutton[0].checked == false && document.form.radiobutton[1].checked == false){ document.getElementById(“errorBox”).innerHTML = […]
This is a javascript code for prevent user to enter only alphabet’s in a textbox….. <html> <head> <script type=”text/javascript” src=”http://code.jquery.com/jquery-1.8.2.js”></script> […]
JavaScript code for prevent user to enter valid email address <html> <head> <script type=”text/javascript” src=”http://code.jquery.com/jquery-1.8.2.js”></script> <script> function Submit(){ fcontact=document.form.contact.value; var […]
JavaScript code for prevent user for enter only numbers This is a JavaScript code for prevent user for enter only […]
Is to difficult to apply required validation on select box but it is very very simple just you have need […]
Do you know how to apply validation accept only numbers using javascript, if not dont worry i have very simple […]
How to apply validation accept only string using JavaScript Do you know how to apply validation accept only string using […]