$(document).ready(function(){ $(".debug").css("border","1px solid red"); //alert(4+7); //if($(".debug").attr("debug")==1){ if(1==1){ //alert("hello, guest"); $.ajax({ type: 'POST', dataType: 'text', //json url: '/public/js/counter_js.php?act=ajax', data: { type : "ACT:", what : "start", }, success: function(data){ //alert(data); } }); //$("body") /*$( window ).scroll(function(){ alert(eventData); });*/ } $("a").click(function(){ what_id = $(this).attr("id"); what_cl = $(this).attr("class"); what = "A"+(what_cl?"."+what_cl:"")+(what_id?"#"+what_id:""); what += "("+$(this).attr("href")+")"; //what += $(this).parent().attr("class"); //what = $(this).text(); $.ajax({ type: 'POST', dataType: 'text', //json url: '/public/js/counter_js.php?act=ajax', data: { type : "ACT:", what : what, }, success: function(data){ //alert(data); } }); }); });