$(document).ready(function(){
$('img').click(function(){
var class = $("img").attr("class");
console.log(class);
});
});
Back with another question. I have 3 images each with a different class (image1, image2, image3). If i run the code above the log will only show the class of the first image no matter what image I click on
Within your
click event handler, replace$("img")with$(this)like:
thiswill reference to the specific object which is involved. You may also use theevent.targetlike$(event.target).attr("class");, if you declareeventas parameter of your click handler.