Response title
This is preview!
alert($(
"ul li").get(0));$("ul li").get(0) will retrieve a native dom object - namely the first li element in the unordered list. You could perform native methods on that object and access properties (innerHtml for example).
If you are looking for a method that returns a jQuery object you should use $("ul li").eq(0)
© 2013 jQuery Foundation
Sponsored by and others.