Is there any way to set height and width of an image using jquery?
The following is my code
var img = new Image();
// Create image
$(img).load(function(){
imgdiv.append(this);
}).error(function () {
$('#adsloder').remove();
}).attr({
id: val.ADV_ID,
src: val.ADV_SRC,
title: val.ADV_TITLE,
alt: val.ADV_ALT
});
Thanks.
You can call the .height() and ,.width() setters: