/* Initialise jQuery for when the dom is ready */ jQuery(function(){ //Hide the #hidden div (This is displayed by default in case JavaScript is turned off jQuery("#hidden").hide(); //Start the slidedown reveal when the user starts typing in the email address - The time is in milliseconds. You can also use "fast" and "slow" jQuery("#mce-EMAIL").keydown(function(){ jQuery("#hidden").slideDown(500); }); });