Hi, I am very much lost/do not understand how jqm documentation is structured. An example/question:
1. I have attached a click to an element event as such:
$(
"#StockSearch_ScrollBarList").on('click', 'li', function () {
// how do i find in documentation what the signature should be for the attached function ??? How do I find what methods I can call on the object supplied by the event ????
});
For instance I have found on google that $(this).index is available, which will give me the index of the clicked item within a list. I have only found this however by googling "by chance". Where do I find structured information of JQM regarding the clicked event ????