I'm trying to add style with .css() method to the element selected with .get():
$('.toggle').get(0).css("display", "none");
...but that doesn't work. What am I doing wrong?
|
|
Is what you want to do
the |
|||||
|
|
jQuery's You should use jQuery's
This will return a jQuery object with the DOM element at the index you specify, so you'll be able to call jQuery methods against it. Or perhaps better, place it all in the selector using
or
Also, jQuery has |
|||||||
|
|
|
The
or, you can just use the
In your case, |
|||
|
|