/* Author: Onnay Okheng (@onnayokheng) */ jQuery(document).ready(function() { // put all your jQuery goodness in here. var $hasCheck = false; jQuery('.wpsc_buy_button').click(function() { $hasCheck = false; jQuery('.wpsc_buy_button').ajaxSuccess(function() { if (!$hasCheck){ $hasCheck = true; jQuery.get('index.php?tk_ajax_action=status_cart', function(data) { eval(data); }); } }); }); });