Advertisement
cfjedimaster

Untitled

Mar 18th, 2012
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5.     <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
  6.     <script>
  7.     $(document).ready(function() {
  8.         $("#testButton").click(function() {
  9.             $.ajax({
  10.                 type:"head",
  11.                 url:"test2.html",
  12.                 success:function(data,textstatus,jqxhr) {
  13.                     console.log(data);
  14.                     var lastmod = jqxhr.getResponseHeader("Last-Modified");
  15.                     console.log(lastmod);
  16.                 }
  17.             });
  18.         });
  19.     });
  20.     </script>
  21. </head>
  22. <body>
  23. <button id="testButton">Test</button>
  24.  
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement