ajax.js 300 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 function _comments (_action, _id, _link ) { $.post("/client/js/ajax/comments.php", {action: _action, id: ""+_id+"", link: _link}, function(data,textStatus) { window.document.getElementById('comments').innerHTML=data; }); return false; }