นอกจากฟังก์ชั่นปรับขนาดหน้าต่างที่กล่าวถึงมันเป็นสิ่งสำคัญที่จะต้องเข้าใจว่าเหตุการณ์การปรับขนาดไฟมากถ้าใช้โดยไม่ต้อง deboucing เหตุการณ์
Paul Irish มีฟังก์ชั่นที่ยอดเยี่ยมที่จะทำการปรับขนาดการโทรได้อย่างมาก แนะนำให้ใช้มาก ๆ ทำงานข้ามเบราว์เซอร์ ทดสอบใน IE8 เมื่อวันก่อนและทุกอย่างเรียบร้อย
http://www.paulirish.com/2009/throttled-smartresize-jquery-event-handler/
อย่าลืมดูตัวอย่างเพื่อดูความแตกต่าง
นี่คือฟังก์ชั่นเพื่อความสมบูรณ์
(function($,sr){
// debouncing function from John Hann
// http://unscriptable.com/index.php/2009/03/20/debouncing-javascript-methods/
var debounce = function (func, threshold, execAsap) {
var timeout;
return function debounced () {
var obj = this, args = arguments;
function delayed () {
if (!execAsap)
func.apply(obj, args);
timeout = null;
};
if (timeout)
clearTimeout(timeout);
else if (execAsap)
func.apply(obj, args);
timeout = setTimeout(delayed, threshold || 100);
};
}
// smartresize
jQuery.fn[sr] = function(fn){ return fn ? this.bind('resize', debounce(fn)) : this.trigger(sr); };
})(jQuery,'smartresize');
// usage:
$(window).smartresize(function(){
// code that takes it easy...
});