Page 2 of 2
Re: Change address bar text (HTML)
Posted: Thu Apr 14, 2011 10:05 pm
by Axel
Oh but you mean like
changing it while its displaying , but its not the website url ?
Re: Change address bar text (HTML)
Posted: Sun Apr 17, 2011 4:36 pm
by kolega28
u cant change it html can only manipulate the website itself and any included files but it can't manipulate separate controls like vb but u can dynamically change the title and put fun messages on that
Re: Change address bar text (HTML)
Posted: Sun Apr 17, 2011 5:16 pm
by mikethedj4
The only thing I can really think of, off the top of my head is using document.location.href and a hash tag so that the page won't refresh, and you can make your message that way in JavaScript. However you're limited. I'd just advise you not to do it, plus the people that visit the site will get pissed.
Code: Select all<script type="text/javascript">
document.location.href="#You're An Idiot"
</script>