I'm inserting an h3 tag when a form is submitted. How do i fade that h3 tag out in 5 seconds using jquery?
I tried this but it didn't work. Do i have to use .live?
$(document).ready(function() {
$('h3').delay(5000).fadeout(300);
});
EDIT: I'm submitting the form to itself in case that matters.