Blame view

test-account/mods/ajax/ajax.js 300 Bytes
42868d70   andryeyev   Создал GIT
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;
  
  }