Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. $('#nav > div > ul.clearfix.mainnav > li:nth-child(5) > a').html($('#nav > div > ul.clearfix.mainnav > li:nth-child(5) > a').text() + ' <em class="mark-number mirko-counter">...</em>');
  2. $.ajax({
  3. url: 'http://mirkoonline.herokuapp.com/jsonp',
  4. dataType: 'jsonp',
  5. success: function(data){
  6. console.log(data);
  7. $('.mirko-counter').text('Aktywni: '+data.counter);
  8. },
  9. error: function() {
  10. $('.mirko-counter').text('?');
  11. }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement