toggle class jquery img
by Bhabani Raju
HTML
<img...
CSS
.test {
height: 60px;
}
JavaScript
$("img").click(function() {
$(this).toggleClass("test");
});
by Bhabani Raju
<img...
.test {
height: 60px;
}
$("img").click(function() {
$(this).toggleClass("test");
});