Not.
Firstly, loading the jQuery library will take too long, so you have to do it using direct Javascript.
Secondly, even if the meta had an identifier, and you immediately sent the simplest fragment of JS:
<meta id="stopMe" http-equiv='refresh' content='0;url=http://stackoverflow.com/'> <script> var meta = document.getElementById('stopMe'); meta.parentNode.removeChild(meta); </script>
it will still be too late, because content=0
in meta means the update is immediately executed, so the script will never be executed. If you put the script in front of the meta, this would not work, because there was no DOM element for the link.
source share