Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script language="javascript">
onresize = function() { document.location = document.location; }
</script>
var resizeTimer;
window.onresize=function(){
clearTimeout(resizeTimer);
resizeTimer=setTimeout('myResizeFunction()',300);
}
function myResizeFunction(){
alert('You resized me!');
}
Keep in mind though that this event gets triggered continually as they drag the window borders.