function wpw_mappress_head_fun()
{
echo '<meta http-equiv="X-UA-Compatible" content="IE=7,IE=8,IE=9,IE=10"/>';
wp_enqueue_style('mappress',WPW_CLASSI_GMAP_PLUGIN_URL.'/mappress.css');
?>
<script>
jQuery( document ).ready(function() {
jQuery(".cssslider ul li .nxlnk").on("click",function(event) { //fixed here
event.preventDefault();
jQuery(this).closest("li").hide();
if(jQuery(this).closest("li").next('li').length === 1)
jQuery(this).closest("li").next('li').show();
else
jQuery(".cssslider ul li").eq(0).show();
});
jQuery(".cssslider ul li .prelnk").on("click",function(event) { // fixed here
event.preventDefault();
jQuery(this).closest("li").hide();
if(jQuery(this).closest("li").prev('li').length === 1)
jQuery(this).closest("li").prev('li').show();
else
jQuery(".cssslider ul li").last().show();
});
});
</script>
There are currently 1 users browsing this thread. (0 members and 1 guests)