Hi,
Question :
How can I make my home button go to the actual url in the address bar ?
I need this because we have a lot of subdomains with each its own startpage. From the startpage all menulinks are directing to pages of the main site. So history.back() & history.go() do not work here, because they send always to the main site's startpage instead of the subdomain's startpage.
Is there a way to make the button dynamic ? Or a function that simulates the F5 refresh button of IE.
Pages are in ASP / VbScript / MSSQL
Any help appreciated !
Greetz,
Wim
Home button
for a refresh... look at this example
http://milonic.com/menusample27.php
(there is a refresh option in the context menu).
For a scripting standpoint you could do..
I think that would work (havent actually tested it).
http://milonic.com/menusample27.php
(there is a refresh option in the context menu).
For a scripting standpoint you could do..
Code: Select all
<script>
function goHome(){
location.href = location.href;
}
----declare your menu----
aI("text=Home;onfunction:goHome();");
----rest of menu----
</script>