vote up -3 vote down star

How can i fadeOut a div using jquery

flag

2 Answers

vote up 3 vote down check

You realise jQuery has a website with documentation, right?

And if you were to look at that documentation, you'd come across the answer.

$("#theIDofYourDivTag").fadeOut("slow");
link|flag
But it is not working in jquery-1.3.2-min.js Any idea???? – Karthik May 5 at 9:37
I'd suggest that the problem is more likely in your code or environment and not in jquery. – Nathan Ridley May 5 at 10:58
@Karthik - Use Firebug. It debugs Javascript in Firefox. And it has a lot more context to the actual problem than we do. – tghw May 5 at 13:13
vote up 0 vote down
$('#myDiv').fadeOut("slow");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.