File: jquerytest.html

Recommend this page to a friend!
  Classes of zinsou A.A.E.Moïse   jQuery Show Password Eye   jquerytest.html   Download  
File: jquerytest.html
Role: Example script
Content type: text/plain
Description: example script
Class: jQuery Show Password Eye
Make the value password visible in form input
Author: By
Last change:
Date: 6 years ago
Size: 1,057 bytes
 

Contents

Class file image Download
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Connexion preferences</title> </head> <body> <form id="changepass" method="POST"> <fieldset> <p><input type="text" id="pseudo" name="pseudo" placeholder="pseudo" /> <input type="text" id="name" name="name" placeholder="name" /> <input type="password" id="password" name="password" placeholder="old password" /></p><p> <input type="password" id="newpassword" name="newpassword" placeholder="New password" /></p><p> <input type="submit" value="modify" /> </p><div id="manage" ></div> </fieldset></form> <script src="jquery.js"></script> <script src="jquery.showmypwd.js"></script> <script> $(document).ready(function(){ $("changepass").showmypwd( //{ //"passwordfield":"#newpassword", //"img_src": "show.jpg", //"img_alt": "show the password", //"img_id": "showpass", //"callback": null, //} ); }); </script> </body> </html>