How to get value and index of list item onClick event with jQuery? for example:
Item 1 Item 2&
$('#uItem li').click(function(){ var $this = $(this); alert('Text ' + $this.text() + 'Index ' + $this.index()); })