ScrollBar using Jquery
To apply a scrollbar you need to write your html in the div below :-
<div id="outerholder" style="float:left">
<div id="smidscroller" style="overflow:hidden; width:auto; height:500px;">
</div></div>
Write the jquery function as:-
<script type="text/javascript">
$(function () {
$('#smidscroller').slimScroll({
height: 'auto',
railVisible: true,
alwaysVisible: true
});
});
</script>
<script type="text/javascript" src="ui.js"></script>
0 Comment(s)