tags:

views:

21

answers:

1

$(this) //this refer to the elem
how to get the first child of 'this'?

+1  A: 
$(this).childen().eq(0)

or

$(this).childen(':first')

or

$(this).childen(':eq(0)')

or simply without jQuery

this.firstChild
redsquare