Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function filter(type) {
  2. $.getJSON('/activity_stream/global-activity-stream/', {xhr: "true", filter: type},
  3. function(data) {
  4. $('.mainContent').children().remove();
  5. $(data).appendTo('.mainContent');
  6. });
  7. }
  8.  
  9. $(".btn").click(function () {
  10. filter("recent");
  11. });
  12.  
  13. $( '.my-selector' )
  14.  
  15. $( [ 'my-data' ] )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement