Hi Max
I'm simply trying to get vaue of a clicked item in my list named "Productlist".
I'm using jQuery function
$('#Productlist li').click(function(){
var $this = $(this);
alert($this.text() + ' \nIndex ' + $this.index());
})
This will not even show alert box.
I am invoke the above on-click event of the ProductListitem.
Perhaps it may be done using Tiggr API ?
Thanks Max