var func = function () { var index = document.URL.indexOf("?", 0); if(index >= 0) { window.location = document.URL.substring(index+1,document.URL.length); } } if(window.addEventListener) { window.addEventListener('load', func, false); }