Pauly
November 14th, 2004, 13:36
<script type="text/javascript">
var text = "Bookmark this Page"
// Add your website URL between the quotations below
var site = "http://www.takinghold.co.uk";
// Add your site description in the quotations below
var desc = "TakingHold.co.uk // Not for the sensitive"
var ver = navigator.appName
var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")&&(num >= 4))
{
document.write('<a title="Bookmark this Page" href="javascript:window.external.AddFavorite(site,desc);" ');
document.write('onMouseOver=" window.status=')
document.write("text; return true ")
document.write('"onMouseOut=" window.status=')
document.write("' '; return true ")
document.write('">'+ text + '</a>')
}
else
{
text += " Press <strong>Ctrl + D</strong>"
document.write("To " + text)
}
</script>
Right now (I believe), this action adds the domain listed at the top to favourites, however because I am including this to cut down on code I would like it to work on the page it's included.
Can anyone explain how I would do this please?
var text = "Bookmark this Page"
// Add your website URL between the quotations below
var site = "http://www.takinghold.co.uk";
// Add your site description in the quotations below
var desc = "TakingHold.co.uk // Not for the sensitive"
var ver = navigator.appName
var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")&&(num >= 4))
{
document.write('<a title="Bookmark this Page" href="javascript:window.external.AddFavorite(site,desc);" ');
document.write('onMouseOver=" window.status=')
document.write("text; return true ")
document.write('"onMouseOut=" window.status=')
document.write("' '; return true ")
document.write('">'+ text + '</a>')
}
else
{
text += " Press <strong>Ctrl + D</strong>"
document.write("To " + text)
}
</script>
Right now (I believe), this action adds the domain listed at the top to favourites, however because I am including this to cut down on code I would like it to work on the page it's included.
Can anyone explain how I would do this please?