JQuery - Get the ID of a clicked item

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);
                                   });

[COLOR=#444444][FONT=Roboto]we can achieve this simple task using jquery [/FONT][/COLOR]event.target[COLOR=#444444][FONT=Roboto] event object.
http://jquerytutorialwithexamples.com/2014/10/get-id-element-fired-event-using-jquery/
[/FONT][/COLOR]