Click here to Skip to main content
15,917,731 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi..

I am using jscrollpane to provide a custom scrollbar for a div. My code is as shown below.

The mouse wheel event in jscrollpane is not firing in Firefox/IE. It works for Chrome, Safari.

XML
hi..
here is code i am using..mousewheel firing only for scroll track area not for whole div/iframe..
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="style/jquery.jscrollpane.css">
<script type="text/javascript" src="script/jquery-1.3.2.js"></script>
<script src="script/jquery.jscrollpane.js"></script>
<script src="script/jquery.mousewheel.js"></script>
<script src="script/jquery.jscrollpane.min.js"></script>
<script type="text/javascript">
    $(document).ready(function(){
        $('#test').jScrollPane({ showArrows:true , scrollbarWidth:5});
    });
</script>
</head>
<body>
<div id="test" style="height:300px;width:900px;overflow: auto;">
<iframe style="height:1300px;width:900px;" src="http://www.google.com" scrolling="no"></iframe>
</div>
</body>
</html>
Posted
Updated 28-Jan-11 21:21pm
v4
Comments
Christian Graus 27-Jan-11 9:31am    
If you create a scrollbar for a div using plain HTML, does it work then ? I suspect it's to do with the browser itself and can't be changed.
Sergey Alexandrovich Kryukov 27-Jan-11 10:20am    
Would you get to the page, then see View/Page source, copy the HTML test and post it? (Always a good idea to check up.)
--SA
niravsahayata 29-Jan-11 3:20am    
hi..
here is code i am using..mousewheel firing only for scroll track area not for whole div/iframe..



<title>Untitled Document





$(document).ready(function(){
$('#test').jScrollPane({ showArrows:true , scrollbarWidth:5});
});










This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900