Hey there all, I have a list of items with the class click, ie
<a class = "click" id = "1">Item 1</a>
<a class = "click" id = "2">Item 2</a>
<a class = "click" id = "3">Item 3</a>
<a class = "click" id = "4">Item 4</a>
and so on - these items are created dynamically.
Now how can I use jquery to return the ID’s of whatever one I click on?
I’ve tried this, but it doesn’t work
$(".click").click(function(){
//Get the id of this clicked item
pos = this.attr("id");
goPos(pos);
});