|
Haven't registered yet? Do it here now!
|
nicedreams
Joined: 09 Sep 2007 Posts: 31
|
|
|
|
|
|
|
Posted: Sat Sep 15, 2007 5:53 am Post subject: Bookmark snippet |
|
|
|
|
|
|
|
|
|
|
I'm trying to add some bookmark script as a snippet, but it doesn't show up when I place the snippet tag in the template.
What is wrong with this code:
Code: | <script>
if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >=
4)) {
var url="%%BLOG_URL%%";
var title="%%TITLE%%";
document.write("<a href=\"javascript:window.external.AddFavorite(url,title);\"
onMouseOver=\"window.status='Add to your favorites!'; return true;\"
onMouseOut=\"window.status=''; return true;\">Bookmark</a>");
}
else {
var msg = "Bookmark";
if(navigator.appName == "Netscape") msg += " (CTRL-D)";
document.write(msg);
}
</script> |
Or can you suggest some better bookmarking code? |
|
|
|
|
|
|
|
Atanasis Owner
Joined: 22 May 2004 Posts: 4284 Location: The Net
|
|
|
|
|
|
|
Posted: Sat Sep 15, 2007 1:58 pm Post subject: |
|
|
|
|
|
|
|
|
|
|
well, it should be okay. the only thing i see that could be problemable are the backslashes. Try it this way:
Code: |
<script>
if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >=
4)) {
var url="%%BLOG_URL%%";
var title="%%TITLE%%";
document.write('<a href="javascript:window.external.AddFavorite(url,title);"
onMouseOver="window.status=\\'Add to your favorites!\\'; return true;"
onMouseOut="window.status=\\'\\'; return true;">Bookmark</a>");
}
else {
var msg = "Bookmark";
if(navigator.appName == "Netscape") msg += " (CTRL-D)";
document.write(msg);
}
</script>
|
_________________ Thanks,
Kaktusan
|
|
|
|
|
|
|
|
nicedreams
Joined: 09 Sep 2007 Posts: 31
|
|
|
|
|
|
|
Posted: Sat Sep 15, 2007 6:13 pm Post subject: |
|
|
|
|
|
|
|
|
|
|
Thanks, I was missing an end } |
|
|
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2002 phpBB Group
|
|
|
|
| |