Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Can you show us a bit of your HTML, too? – Mark Elliot Oct 18 '10 at 0:56
Can you post your HTML as well? Can you use Firebug to prove $('.toggle').get(0) returns an object that you can apply that CSS property to? – Dave Anderson Oct 18 '10 at 1:00
where are you adding css? .try add() or hide() – zod Oct 18 '10 at 1:03
thanks friends! problem is solved! – alega Oct 18 '10 at 1:19

3 Answers

Is what you want to do

$('.toggle').first().css("display", "none");

the .get(0) returns a DOM object, not a jQuery object.

share|improve this answer
1  
you can also use .hide() api.jquery.com/hide – racar Oct 18 '10 at 1:04

jQuery's .get() method returns the plain DOM element.

You should use jQuery's .eq() method instead when selecting by index.

$('.toggle').eq(0).css("display", "none");

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 :eq() or :first selector:

$('.toggle:eq(0)')

or

$('.toggle:first')

Also, jQuery has .show() and .hide() methods to set the display property. Or perhaps .toggle() is more appropriate considering the class name.

share|improve this answer
thanks again! it works – alega Oct 18 '10 at 1:01
@alega - You're welcome. :o) – user113716 Oct 18 '10 at 1:02
+1 for using show and hide. – Soviut Oct 18 '10 at 1:03

The .get(n) function returns the original DOM object. If you want to use this, you can always access the .style object and change the CSS properties from there, such as:

$('.toggle').get(0).style.display = 'none';

or, you can just use the eq(n) function to grab the nth jQuery object:

$('.toggle').eq(0).css("display", "none");

In your case, first() will also work. You can also always use the selector version of these: :eq(n) or :first.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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