jQuery( window ).resize(function(){
if ( jQuery( window ).width() < 1199 && jQuery( window ).width() > 991 ) {
jQuery("body").load(location.href);
image_scale_height();
ctitle_scale_height();
}
});
I wanted to read the code under that range only ONCE but when I resize it within that range, it act like a loop, it always read all within that range.