Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <script>
  2. $(document).ready(function(){
  3.  
  4. if(localStorage.getItem('primaVisita') != 'true') {
  5. localStorage.setItem('primaVisita', 'true');
  6. $('#popupBonomi').show();
  7. } else {
  8. $('#popupBonomi').hide();
  9. }
  10. });
  11. </script>
  12.  
  13. Per rimuovere il valore:
  14.  
  15. localStorage.removeItem('primaVisita');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement