Guest User

Untitled

a guest
Nov 8th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. $(document).ready(function(){
  2.  
  3. var cout = localStorage.getItem('cout') || 0;
  4.  
  5. $("#btnCount").click(function(){
  6. cout = parseInt(cout)+1;
  7. $('p').html(cout);
  8. alert(cout);
  9. localStorage.setItem('cout',cout);
  10. });
  11. });
  12. </script>
  13. <button type="button" id="btnCount">Click me</button>
Add Comment
Please, Sign In to add comment