Maybe in here? Can the two scripts be conflicting?
Code:
<script type="text/javascript">
$(document).ready(function(){
$('.wope-slider').wopeslider({
skin : 'rounded-black',
autoplay : true,
show_gui : true,
pause_button : true,
navigation_buttons : true,
numbered_buttons : true,
});
});
</script>
<script type="text/javascript">
jQuery(function($){
$(document).on('click', '.wopeslider-slide a', function(e){
var href = this.href;
$.ajax({
url: href,
success: function(data){
$('#BigPlace').html(data);
}
});
e.preventDefault();
});
});
</script>
Bookmarks