views:

158

answers:

2

How can i fadeOut a div using jquery

A: 
$('#myDiv').fadeOut("slow");
karim79
+4  A: 

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");
Nathan Ridley
But it is not working in jquery-1.3.2-min.jsAny idea????
Karthik
I'd suggest that the problem is more likely in your code or environment and not in jquery.
Nathan Ridley
@Karthik - Use Firebug. It debugs Javascript in Firefox. And it has a lot more context to the actual problem than we do.
tghw