[javascript]
$(‘.mydiv img’).each(function() {
var imgwidth = $(this).width();
if (imgwidth < 150) {
$(this).hide();
} else {
$(this).show();
}
});
[/javascript]
[javascript]
$(‘.mydiv img’).each(function() {
var imgwidth = $(this).width();
if (imgwidth < 150) {
$(this).hide();
} else {
$(this).show();
}
});
[/javascript]
© 2023 Best jQuery.