i made the following code for a image re-size based of max width and same goes for height using .height() . the problem is still i can find a good responsive image re-size plugin or something like that could re-size image when we re-size browser . is there anything can could be implimented in my code or any new resposive plugin known to anyone to rezise image automatically when the browser is resized plus a deafult max-width and height ?
my code for max width resize
// SET MIN AND MAX SIZE OF IMAGES
if (lboxitem.find('.tp-mainimage').width() > opt.maxWidth) {
var oldimgw = lboxitem.find('.tp-mainimage').width();
var oldimgh = lboxitem.find('.tp-mainimage').height();
var perc = opt.maxWidth / oldimgw;
lboxitem.find('.tp-mainimage').width(opt.maxWidth);
lboxitem.find('.tp-mainimage').height(oldimgh*perc);
}
if (lboxitem.find('.tp-mainimage').width() < opt.minWidth) {
var oldimgw = lboxitem.find('.tp-mainimage').width();
var oldimgh = lboxitem.find('.tp-mainimage').height();
var perc = opt.minWidth / oldimgw;
lboxitem.find('.tp-mainimage').width(opt.minWidth);
lboxitem.find('.tp-mainimage').height(oldimgh*perc);
}