Scrollpane not working while using jquery fade in on div -
i'm experiencing odd problem. i'm using jquery.scrollpane.js custom scrollpanes , have div hided when page loading:
<script type="text/javascript"> $(window).load(function(){ $(".container").fadein("slow"); }); </script>
and html
<div class="container" style="display:none;">
the fade works charm, scrollpane not working more..
here's code initiate scrollpane
<script type="text/javascript"> $(function() { $('.scroll-pane').jscrollpane({autoreinitialise:true}); }); </script>
can out?
i've got working following code:
<script type="text/javascript"> $(window).load(function(){ $(".container").fadein("slow"); }); $(function() { $('.scroll-pane').jscrollpane({autoreinitialise:true}); }); </script>
Comments
Post a Comment