Guest User

Untitled

a guest
Jul 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $(document).ready(function() {
  2. var siteKey = 'isSiteOpened:' + location.host;
  3. if(localStorage.getItem(siteKey)) {
  4. $('html').remove();
  5. alert('Вкладка уже открыта');
  6. } else {
  7. localStorage.setItem(siteKey, true);
  8. $(window).unload(function() {
  9. localStorage.removeItem(siteKey);
  10. });
  11. }
  12. });
Add Comment
Please, Sign In to add comment