Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

JavaScript window.location.href - problems

Status
Not open for further replies.

Pav1977

IS-IT--Management
Jul 5, 2006
59
GB
I'm trying to write a script that will pass the url of the current page to the 'stumbleupon' site to be bookmarked.
My script is:

<script type="text/javascript">
function getHost()
{
var url = window.location.href;
var bookmarkpart1='<a href="
document.write(bookmarkpart1+url+'"> <img border=0 src=""**LINK TO stumbleit.gif**"" alt="StumbleUpon Toolbar"> Stumble It!</a>')
}
</script>

<script type="text/javascript">
getHost();
</script>

Unfortunately it's for some reason not writing the value of the variables (bookmarkpart1 and url but writes them as string on the page.
What am I doing wrong???

if I call it with for example

<body onload="getHost()">
</body>

it works fine but that's not how I want it.

Any help would be much appreciated.

Pav
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top