Reputation: 22857
I have a bit of JS using JQuery
function removeTag() {
$('{...}').doSomething();
}
$(document).ready(function() {
$('.RemoveTag').click(removeTag);
});
Is there anything I can replace {...} with to give me the element that was clicked?
Kindness,
Dan
Upvotes: 2
Views: 470