Posts

jQuery Ajax PHP Connectivity Example

Ajax_jQuery.html <!DOCTYPE html> <html> <head>     <title>Ajax jQuery Example</title>     <script type="text/javascript" src="jquery.js"></script>     <script type="text/javascript" src="Ajax_jQuery.js"></script> </head> <body> <form id="AJ_Form" method="POST" action="Ajax_jQuery.php">     Username <input type="text" name="username" id="username" placeholder="Username"><br>     Password <input type="password" name="password" id="password" placeholder="Password"><br>     <input type="button" name="submit" id="submit" value="Login"><br>     <div id="query_result"></div> </form> </body> </html> Ajax_jQuery.js $(document).ready(function(){     $("...

jQuery Hide & Show Example

<!DOCTYPE html> <html> <head>     <title>Hide Method</title>     <script type="text/javascript" src="jquery.js"></script>     <script type="text/javascript">         $(document).ready(function(){             $("#button").click(function(){                 $("#textbox").hide();             });         });     </script> </head> <body> <form id="form">     <input type="text" id="textbox" value="Hello World" readonly=""><br>     <input type="button" id="button" value="Submit"> </form> </body> </html>

jQuery Dropdown Example

<!DOCTYPE html> <html> <head>     <title>Dropdown</title>     <script type="text/javascript" src="jquery.js"></script>     <script type="text/javascript">         $(document).ready(function(){             $("#dropdown").change(function(){                 if($("#dropdown").val()=="rajkot"){                     alert("Your City is Rajkot");                 }             });             $("#button").click(function(){                 if($("#dropdown").val()=="select"){   ...

jQuery Radio Button Validation Example

<!DOCTYPE html> <html> <head>     <title>Radio</title>     <script type="text/javascript" src="jquery.js"></script>     <script type="text/javascript">         $(document).ready(function(){             $("#button").click(function(){                 if($("#radio1").is(":checked")==false && $("#radio2").is(":checked")==false){                 alert("Select Gender");                 return false;             }                            });         });  ...

jQuery Checkbox Validation Example

<!DOCTYPE html> <html> <head>     <title>Checkbox</title>     <script type="text/javascript" src="jquery.js"></script>     <script type="text/javascript">         $(document).ready(function(){             $("#button").click(function(){                 if($("#checkbox1").is(":checked")==true){                     alert("You Select First Checkbox");                 }                 else                 {                     alert("Please S...

jQuery Empty Field Validation Example

<html> <head>     <title>Textbox</title>     <script type="text/javascript" src="jquery.js"></script>     <script>         $(document).ready(function(){             $("#button").click(function(){                 if($("#username").val()==''){                     document.getElementById("uname").innerHTML="Username Required";                     return false;                 }                 if($("#password").val()=...

jQuery Toggle Example

<!DOCTYPE html> <html> <head>     <title>Toggle Method</title>     <script type="text/javascript" src="jquery.js"></script>     <script type="text/javascript">         $(document).ready(function(){             $("#button").click(function(){                 $("#message").toggle();             });         });     </script> </head> <body> <form id="form">     <input type="button" id="button" value="Toggle"><br>     <p id="message">Hello World</p> </form> </body> </html>

jQuery Compare Password Example

<!DOCTYPE html> <html> <head>     <title>Compare Password</title>     <script type="text/javascript" src="jquery.js"></script>     <script type="text/javascript">         $(document).ready(function(){             $("#button").click(function(){                 if($("#password").val() == $("#cpassword").val()){                 alert("Password Matched");             }             else{                 alert("Password Not Matched");             }             }); ...

jQuery Show Password Example

<!DOCTYPE html> <html> <head>     <title>Show Password</title>     <script type="text/javascript" src="jquery.js"></script>     <script type="text/javascript">         function show_password(){             var pw=document.getElementById("mypassword");             if($("#checkbox1").is(":checked")==true){                 pw.type="text";             }             else{                 pw.type="password";             }         }              ...