Guest User

Untitled

a guest
Oct 17th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. var bodyContent = $.ajax({
  2. url: "script.php",
  3. global: false,
  4. type: "POST",
  5. data: {id : this.getAttribute('id')},
  6. dataType: "html",
  7. async:false,
  8. success: function(msg){
  9. alert(msg);
  10. }
  11. }
  12. ).responseText;
Add Comment
Please, Sign In to add comment