How can i fadeOut a div using jquery
Asked
Active
Viewed 356 times
2 Answers
4
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
- 33,766
- 35
- 123
- 197
-
But it is not working in jquery-1.3.2-min.js Any idea???? – Karthik May 05 '09 at 09:37
-
I'd suggest that the problem is more likely in your code or environment and not in jquery. – Nathan Ridley May 05 '09 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 05 '09 at 13:13