“element.dispatchEvent is not a function” js error caught in firebug of FF3.0

后端 未结 5 1248
别那么骄傲
别那么骄傲 2020-12-08 01:46

i am getting the following error while loading my index page in FF3.0. Sorry, i am unable to paste the script here as it is 2030 lines of code.

elemen

5条回答
  •  天涯浪人
    2020-12-08 02:36

    Change the following line

    $(document).ready(function() {
    

    To

    jQuery.noConflict();
    jQuery(document).ready(function($) {
    

提交回复
热议问题