i am having trouble trying to hide the notice that devise provides after you successfully login using jquery. i want to hide it after a second of displaying however it is not working. here is what i have:
$(document).ready(function(){
$("p.notice").delay(1000).hide("slow");
});
I know the java script is getting excecuted because i put an alert in there to test it out. any idea why it isnt hiding the devise “notice” paragraph class:
<p class"notice">Signed in successfully.</p>
.delayworks with animations only try