Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!doctype html>
  2. <html>
  3.  
  4. <head>
  5.     <script src="http://code.jquery.com/jquery-1.11.1.js"></script>
  6.     <script src="JS/jquery.cookie.js"></script>
  7.  
  8.     <body>
  9.         Name:
  10.         <input type="text" id="nInput">
  11.         <button id="nBtn">Submit</button>
  12.         <button id="rBtn">Read</button>
  13.         <script>
  14.             $("#nBtn").click(function (event) {
  15.                 $.cookie("name", $("#nInput").val(), {
  16.                     expires: 7,
  17.                     path: '/'
  18.                 });
  19.                 alert($("#nInput").val());
  20.                 //alert("submit");
  21.             });
  22.             $("#rBtn").click(function (event) {
  23.                 alert($.cookie("name"));
  24.                 //alert("read");
  25.             });
  26.         </script>
  27.     </body>
  28.  
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement