Last active
January 4, 2016 11:28
-
-
Save petenelson/8614982 to your computer and use it in GitHub Desktop.
Force all browsers to reload on any attached browser's page reload
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// just using a file, could easily be replaced by some other storage method | |
if (isset($_REQUEST['new']) && $_REQUEST['new'] == '1') { | |
$ver = new stdClass(); | |
$ver->ver = time(); | |
file_put_contents('ver.json', json_encode($ver)); | |
} | |
else { | |
echo file_get_contents('ver.json'); | |
die(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title></title> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> | |
<meta name="viewport" content="initial-scale=1" /> | |
</head> | |
<body> | |
<div id="ver" style="font-size: 4em;"></div> | |
<img src="http://baconmockup.com/300/300/bacon" /> | |
<script type="text/javascript"> | |
var version = ''; | |
jQuery(document).ready(function() { | |
setTimeout(reloadOnNewVersion, 250); | |
}); | |
window.onbeforeunload = function(e) { | |
setNewVersion(); | |
} | |
function setNewVersion() { | |
jQuery.ajax({ | |
async: false, | |
url: 'api.php', | |
type: 'POST', | |
data: { 'new':1 } | |
}).done(function(results) { }); | |
} | |
function reloadOnNewVersion() { | |
jQuery.post('api.php', function(results) { | |
if (version == '') | |
version = results.ver; | |
else if (version != results.ver) { | |
window.onbeforeunload = null; | |
window.location.reload(true); | |
} | |
jQuery('#ver').html(version); | |
setTimeout(reloadOnNewVersion, 250); | |
}, 'json'); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment