I'm having problems with the plugin nicescroll
of JQuery
on Chrome
I'm doing this:
<script type="text/javascript" src="_global/_scripts/_funcoes/_js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="_global/_scripts/_funcoes/_js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="_global/_scripts/_funcoes/_js/menu.js"></script>
<script type="text/javascript" src="_global/_scripts/_funcoes/_js/jquery.nicescroll.min.js"></script>
<script type="text/javascript" src="_global/_scripts/_funcoes/_js/scrowSuave.js"></script>
scrowSuave.js
$(window).load(function(){
$(document).ready(function () {
$("html").niceScroll();
});
});
In Internet Explorer the scroll bar appears and everything works fine. But in Chorme, the bar goes away and it seems that everything that is below the call hangs.
I placed this address to see.
This error only occurs in Chorme
and Firefox
. Edge
and IE
does not display error.
NO console error
Another note is that when viewing the source code of the page, the whole page was generated up to /html
, but its display is halted and the scroll bar no longer exists! The scroll bar is disabled!
Thank you to all who can help.
Carlos Rocha