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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to modify addtofavorites

Status
Not open for further replies.

dreammaker888

Programmer
Jul 31, 2007
44
US
I got the following from Googling.
I am not sure I understand the part:

Change the 4th and 5th lines "var url Address and var Pagename" to suit your sites url and page name.

Can someone shed some light here?

Thanks.

Alex


Add to my Favorite (javascript)

First you place the following in your <HEAD> tag of your html
Change the 4th and 5th lines "var url Address and var Pagename" to suit your sites url and page name. Change nothing else!

Code:
<script 
language="JavaScript" type="Text/Javascript"><!-- // 
Hide script from older browsers // script by [URL unfurl="true"]http://www.hypergurl.com[/URL] var urlAddress 
= "[URL unfurl="true"]http://www.hypergurl.com/graphics.html";[/URL] var pageName = "Free 
Graphics,Hypergurl"; function addToFavorites() { if (window.external) { window.external.AddFavorite(urlAddress,pageName) 
} else { alert("Sorry! Your browser doesn't support this function."); 
} } // --></script>
 
Looks like everything got sblounched into a single line. I'm [blue]guessing[/blue] this is what it should look like:
Code:
<script
language="JavaScript" type="Text/Javascript">
<!--
 // Hide script from older browsers
 // script by [URL unfurl="true"]http://www.hypergurl.com[/URL] 
var [b][red]urlAddress = "[URL unfurl="true"]http://www.hypergurl.com/graphics.html";[/URL][/red][/b]
var [b][red]pageName = "Free Graphics,Hypergurl";[/red][/b]
 function addToFavorites() { if (window.external) { window.external.AddFavorite(urlAddress,pageName)
} else { alert("Sorry! Your browser doesn't support this function.");
} 
}
 // -->
</script>
I'm thinking you need to change the url to your own, and the page name to your own as well.

Einstein47
There are no kangaroos in Austria!
[&#91;]Starbase47.com]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top