Guest User

Untitled

a guest
Jun 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. // join a group
  2. $("#joinGroup").click(function(){
  3. var container = $(this).closest("li");
  4. container.html("<img src=\'/images/ajax-load-small.gif\' /> Joining Group ");
  5. $.ajax({
  6. type: 'POST',
  7. url: '/groups/51/join',
  8. data: { group_id: 51 },
  9. success: function(data) {
  10. container.html(data)
  11. .fadeIn('slow')
  12. .animate({opacity: 1.0}, 2000)
  13. .fadeOut('slow', function() {
  14. $(this).replaceWith('Group membership pending approval');}
  15. );
  16. }
  17. });
  18. });
Add Comment
Please, Sign In to add comment