Guest User

Untitled

a guest
Sep 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <script>
  2. var myVar;
  3. $.get("example.html", function(data) {
  4. myVar = data;
  5. alert(myVar); // всё отлично
  6. }, "html");
  7. alert(myVar); // undefined
  8. </script>
Add Comment
Please, Sign In to add comment