Guest User

Untitled

a guest
Oct 18th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.    $('.msg_id').live("mouseenter", function() {
  2.     $(this).css('cursor', 'pointer');
  3.     tid = $(this).attr('id');
  4.     $.post("log_msg.asp", $("#msgForm").serialize() + "&aktion=popup&msg_id="+tid,
  5.     function(data) {
  6.        
  7.       $("#"+tid).html(data);
  8.      
  9.     });
  10.     });
Add Comment
Please, Sign In to add comment