is there a netqoutevar that i can insert into the url i wish to bookmark this page, so i will return to the same place i was when i bookmarked.. or maybe another way..
im using the following:
// message to show in non-IE browsers
var txt = "Bookmark this page"
// url you wish to have bookmarked
var url = "http://www.tungstenblads.co.uk";
// caption to appear with bookmark
var who = "NETQUOTEVAR:PAGETITLE"
// do not edit below this line
// ===========================
var ver = navigator.appName
var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
document.write('<A HREF="javascript:window.external.AddFavorite(url,who);" ');
document.write('onMouseOver=" window.status=')
document.write("txt; return true ")
document.write('"onMouseOut=" window.status=')
document.write("' '; return true ")
document.write('">'+ txt + '</a>')
}else{
txt += " (Ctrl+D)"
document.write(txt)
}
</script>
im using the following:
// message to show in non-IE browsers
var txt = "Bookmark this page"
// url you wish to have bookmarked
var url = "http://www.tungstenblads.co.uk";
// caption to appear with bookmark
var who = "NETQUOTEVAR:PAGETITLE"
// do not edit below this line
// ===========================
var ver = navigator.appName
var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
document.write('<A HREF="javascript:window.external.AddFavorite(url,who);" ');
document.write('onMouseOver=" window.status=')
document.write("txt; return true ")
document.write('"onMouseOut=" window.status=')
document.write("' '; return true ")
document.write('">'+ txt + '</a>')
}else{
txt += " (Ctrl+D)"
document.write(txt)
}
</script>
Comment