HTML Code is <div> Select All <input type=”checkbox” name=”select_all” id=”select_all”> </div> <div> <table id=”Optiontable”> <tr> <td> <input type=”checkbox” name=”checkRow” id=”checkRow” value””> Select-1 </td> </tr> <tr> …
Read MoreJavaScript
How to post with out refreshing the page
Ajax POST format: request is post to register.php page. All the database insert , update query is written there. connect with jquery library online using– …
Read MoreSubmit Register Form without refreshing the page
<!—- index.php page—-> <html> <body> <!——making jquery library’s link —> <script src=”//code.jquery.com/jquery-1.10.2.js”></script> <script> function validate() { //——–value of fields ——— var name = document.getElementById(“name”).value; var …
Read MoreRegistration Form validation With Javascripts
<html> <body> <script> function validate() { var name = document.getElementById(“name”).value; var email = document.getElementById(“email”).value; var phone = document.getElementById(“phone”).value; var error_name_id = document.getElementById(“error_name”); var error_email_id = …
Read More