inserting html with php on submit, but how to use jquery to fade out that html?

Woorgeemeri

New Member
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?\[code\]$(document).ready(function() { $('h3').delay(5000).fadeout(300);});\[/code\]EDIT: I'm submitting the form to itself in case that matters.
 
Back
Top