UNPKG

realtime-sync-storage

Version:

Cross-origin local storage realtime synchronizing.

16 lines 287 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>otherSite</title> </head> <body> <script> (function(){ window.addEventListener('storage',function(e){ console.log(e,window.localStorage); }); })(); </script> </body> </html>