Guest User

Untitled

a guest
Jun 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $("a#plink").live('click' , function(event){
  2. $.ajax({
  3. url: "ajax/ajax.php?func=View_Post&pid="+$(this).attr("pid"),
  4. type: "GET",
  5. dataType: "html",
  6. beforeSend: function(){$("#div1").text("Loading...")},
  7. success: function(msg){func2(msg)}
  8. });
  9. $("#div1").css('height' , 'auto');
  10. event.preventDefault();
  11. });
  12.  
  13. function func2(msg){
  14. $("#div1 > img").load(function(){$("#div1").html(msg)});
  15. }
Add Comment
Please, Sign In to add comment