Guest User

Untitled

a guest
Feb 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function ajax_send(url,data)
  2. {
  3. $.ajax({
  4. url: url,
  5. type: 'POST',
  6. data: data,
  7. dataType: 'html',
  8. async:false,
  9. success: function(html){
  10. return(html);
  11. }
  12. });
Add Comment
Please, Sign In to add comment