04-22-2010, 05:57 AM
|
|
|
Confirmed User
Join Date: May 2006
Location: http://www.neonasty.com
Posts: 2,107
|
Quote:
Originally Posted by Jdoughs
PHP Code:
<script type="text/javascript">
function bookmarksite()
{
if (document.all)
{
// For IE
window.external.AddFavorite(location.href, document.title);
}
else if (window.sidebar)
{
// For Firefox
window.sidebar.addPanel(document.title, location.href, "");
}
}
</script>
And then where you want it to show:
PHP Code:
<a href="javascript:bookmarksite();"> Bookmark Us!</a>
|
Thanks a million!
|
|
|