Monday, April 27, 2009

[jQuery] Re: How to get css object of one element?

It depends on which one you want, but there are a number of selectors available. For example:

$('a:first').css('color');
$('a:last').css('color');
$('a:eq(2)').css('color');

More info here: http://docs.jquery.com/Selectors

--Karl

____________
Karl Swedberg
www.englishrules.com
www.learningjquery.com




On Apr 27, 2009, at 3:38 PM, Ngoc Bui wrote:

Hi all,

 

I wonder how to get css object of ONE single element? Normally, with array of element we can do like this: $("a").css("color").  However, when I go through each element, this is not available: e.g. $("a")[0].css( "color");

 

Anyone knows how to get css properties of one single element please help me?

 

Thanks in advance.
~Ngoc

No comments: