Guest User

Untitled

a guest
Oct 23rd, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. $(function(){
  2. var new_data = '';
  3. $.post('my_url', {}, function(data){
  4. new_data = data;
  5. });
  6.  
  7. console.log(new_data);
  8. });
Add Comment
Please, Sign In to add comment