Guest User

Untitled

a guest
Oct 24th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <script>
  2. $(document).ready(function () {
  3. $("#saveForm").click(function() {
  4. $.cookie('myCookie', $("#element_1").val(), { expires: 365 });
  5. });
  6. });
  7. </script>
  8.  
  9. <script>
  10. alert( $.cookie("myCookie") );
  11. </script>
  12.  
  13. $(document).ready(function () {
  14. $("#saveForm").click(function () {
  15. $.cookie('myCookie', $el1.val(), {
  16. expires: 365
  17. });
  18. });
  19.  
  20. //set the value of the cookie to the element element_1
  21. var $el1 = $("#element_1").val($.cookie("myCookie"))
  22. });
  23.  
  24. $(document).ready(function () {
  25. $("#saveForm").click(function() {
  26. $.cookie('myCookie', $("#element_1").val(), { expires: 365 });
  27. });
  28. $("#element_1").val($.cookie('myCookie'));
  29. });
Add Comment
Please, Sign In to add comment