Advertisement
Guest User

Untitled

a guest
Aug 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
  2. <script>
  3. (function($, undefined){
  4.   $(function(){
  5.   var timer = setTimeout(function(){
  6.     $.ajax("timer.txt")
  7.      .fail(function(jqxhr, status, error){  $("#warning").html("Error:" + status + " : " + error); })
  8.      .done(function(data){ $("#warning").html(data); })
  9.     }, 2000);
  10.   });
  11. })(JQuery)
  12. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement