简体   繁体   中英

Calling jQuery plugin from document.ready throw getPreventDefault error

I am working on MVC application and I have jQuery plugin, calculating width and height of page and I am calling this from document.ready function. I am getting following error

ReferenceError: getPreventDefault is not defined MyCustomScript:1:115
Use of getPreventDefault() is deprecated.  Use defaultPrevented instead. jquery-1.10.2.js:5389:0
no element found

my plugin

(function($) {

$.fn.adjustOuterStripLayout = function () {

    alert("strip");

    $(window).bind('load resize', function () {

        var viewport_height = $(window).height();

        var viewport_width = $(window).width();

        var webPage_containerWidth = $('.container').width();

        alert("viewport_width  " + viewport_width + "container " + webPage_containerWidth);

    });
 };
})(jQuery);

main function

$(document).ready(function () {

  alert("hello");

 $(this).adjustOuterStripLayout();
});

sometime it alert and sometime it not. I have also clear browser cashed and testing this on firefox and jquery version 1.10.2

Can you try the same in 'window.onload' event instead of in 'documen.ready' ? As, you are trying to refer the window object to get height & width. Unless its not loaded you wont get that value.

Try using code like:

$(window).load(function () {  
 $(this).adjustOuterStripLayout();  
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM