var paramdisplay = getparamarr('exdisplayscript'); function addorders() { $.ajax({ type: 'post', url: '/display/addorders', datatype: 'text', data: { id: paramdisplay['displayid'] }, cache: false, success: function () { window.location = "/orders.html"; } }); } function addhites() { $.ajax({ type: 'post', url: '/display/addhites', datatype: 'text', data: { id: paramdisplay['displayid'] }, cache: false, success: function (data) { $("#hits").text(data); } }); } $(function () { $('#order').click(function () { addorders(); }); if ($("#hits").length > 0) { addhites(); } if ($('.share_box').length > 0) { $('.share_box').hover(function () { $(this).find('.share_content').show(); }) $('.share_box').mouseleave(function () { $(this).find('.share_content').hide(); }) } });