jquery show and hide


/ Published in: jQuery
Save to your folder(s)

simple jquery show and hide


Copy this code and paste it in your HTML
  1. // show/hide forgotten password field
  2. $(".new_pword").click(function(){
  3. $(".intForm .forgotten").toggle();
  4. return false;
  5. })

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.