Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $id.click(function(){
  2. $.get( url, function( data ) {
  3. $("#profile-content").fadeOut("slow",function(){
  4. $(this).html(data);
  5. $(this).fadeIn("slow");
  6. });
  7. });
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement