-4

How can i fadeOut a div using jquery

Karthik
  • 317
  • 2
  • 5
  • 13

2 Answers2

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
0
$('#myDiv').fadeOut("slow");
karim79
  • 339,989
  • 67
  • 413
  • 406