Using the jQuery object as an array ($('.selector')[0]) returns the HTMLElement.
Using jQuery's "eq" function returns the jQuery object of the HTMLElement at that position: $('a').eq(0).css('color'); On Apr 27, 3:38 pm, Ngoc Bui <buitrungngo...@gmail.com> 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