9 lines
210 B
JavaScript
9 lines
210 B
JavaScript
$(function(){
|
|
setImg();
|
|
});
|
|
function setImg(){
|
|
$("#artContext img").each(function(index, element) {
|
|
//if($(this).width()<100)return true;
|
|
$(this).wrap("<div class='img-box'></div>");
|
|
});
|
|
} |