/ Published in: jQuery
simple jquery show and hide
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// show/hide forgotten password field $(".new_pword").click(function(){ $(".intForm .forgotten").toggle(); return false; })