$(this) //this refer to the elem
how to get the first child of 'this'?
views:
21answers:
1
+1
A:
$(this).childen().eq(0)
or
$(this).childen(':first')
or
$(this).childen(':eq(0)')
or simply without jQuery
this.firstChild
redsquare
2010-05-30 06:35:07