問題のページはこちら: http://ezup.com/csg/gt.html
Firefox ではアラート ボックスがトリガーされますが、ページはユーザーからの入力を待たずに自動的に転送されます。これはIEとChromeで機能していますが、ChromeがCookieを認識していないようです...
<script type="text/javascript">
$(document).ready(function(){
(".buy > a").click(function(){
//alert($.cookie("firstClick"));
if($.cookie("firstClick") != 1){
$.cookie("firstClick", "1");
alert("You will now be directed to the Shopping Cart page. Please use your browser's back button to return to the CSG store.");
}
else if($.cookie("firstClick") == 1){
}
});
});
</script>
<body>
<ul>
<li class="buy">
<a href="http://store.ezup.eu/ShoppingCart.asp?ProductCode=EC2HSF1010W&ProductCode=EC1010402142T">L
<button type="button">Add to Cart</button>
</a>
</li>
</ul>
</body>