i create 2 sliders within one page with code :
<script type="text/javascript" src="js/jquery.easing.js"></script>
<script type="text/javascript">
var $jq132 = $.noConflict();
</script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript">
var $ = jQuery.noConflict();
$(document).ready( function($){
// buttons for next and previous item
var buttons = { previous:$('#jslidernews1 .button-next') ,
next:$('#jslidernews1 .button-previous') };
$('#jslidernews1').lofJSidernews( { interval : 5000,
direction : 'opacitys',
easing : 'easeInOutKesatu',
duration : 1200,
auto : true,
maxItemDisplay : 7,
start_item : 2,
navPosition : 'horizontal', // horizontal
navigatorHeight : 58,
navigatorWidth : 57,
mainWidth : 470,
buttons : buttons } );
// buttons for next and previous item
var buttons = { previous:$('#jslidernews2 .button-next') ,
next:$('#jslidernews2 .button-previous') };
$('#jslidernews2').lofJSidernews( { interval : 5000,
direction : 'opacitys',
easing : 'easeInOutExpo',
duration : 1200,
auto : true,
maxItemDisplay : 7,
start_item : 2,
navPosition : 'horizontal', // horizontal
navigatorHeight : 58,
navigatorWidth : 57,
mainWidth : 470,
buttons : buttons } );
})($jq132);
</script>
but only one slider can be clicked. how to make 2 sliders can be clicked?