Advertisement
dimti

Untitled

Feb 5th, 2016
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {path: '/news*', callbacks: function() {
  2.                 //alert('callback');
  3.                 var
  4.                     button = $("#news-add-more")
  5.                     , offsetCurrent = 10
  6.                     ;
  7.  
  8.                 if (button.size() == 0) {
  9.                     return;
  10.                 }
  11.  
  12.                 button.on('click', $.proxy(onClickButton, null/*, param1, param2*/));
  13.  
  14.                 function onClickButton(/*param1, param2, */ev){
  15.                     $.ajax({
  16.                         type: 'post',
  17.                         url: '/ajax/news-add-more',
  18.                         data: {offsetCurrent: offsetCurrent},
  19.                         success: function(){
  20.                             //alert('ajax succes');
  21.                         },
  22.                         complete: function(xhr){
  23.                             //alert('ajax complete');
  24.                             //alert(xhr.responseText);
  25.                             //console.log(xhr.responseText);
  26.                             //$("#news-add-more-div").append(xhr.responseText);
  27.                             $("#news-add-more-div").parent().before(xhr.responseText);
  28.                         },
  29.                         error: function(jqXHR, textStatus, errorThrown) {
  30.                             //console.log(textStatus, errorThrown);
  31.                         }
  32.                     });
  33.  
  34.                     //alert('click');
  35.                 }
  36.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement