Guest User

Untitled

a guest
Jun 24th, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function dropPublic(m_id, g_id,caseFrom)
  2. {
  3. $.ajax({
  4. type:"GET",
  5. url:"groups.php?m_id="+m_id+"&g_id="+g_id,
  6. cache:false,
  7. success:function(response){
  8. $.get("groups.php?reload_groups", function(data){
  9. $("#groupsall").html(data);
  10. $("#added"+g_id).animate({"opacity" : "10" },10);
  11. $("#added"+g_id).show();
  12. $("#added"+g_id).animate({"margin-top": "-50px"}, 450);
  13. $("#added"+g_id).animate({"margin-top": "0px","opacity" : "0" }, 450);
  14. });
  15. }
  16. });
  17. }
Add Comment
Please, Sign In to add comment