| | |||||
| ||||||||
| CODE This forum is for posting code snippets and example scripts that aren't quite tutorials, but could be useful for others. You may post code snippets and/or completed scripts that you've written and want to share here. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| You are here: X Join Date: Oct 2003 Location: US
Posts: 483
![]() ![]() ![]() ![]() ![]() | Bookmark that works in IE & Firefox This simple script will create a link that adds the current page to the users bookmark or favorites folder in IE & Firefox Code: <script language="JavaScript1.2" type="text/javascript">
function addBookmark(title,url) {
if (window.sidebar) {
window.sidebar.addPanel(title, url,"");
} else if( document.all ) {
window.external.AddFavorite( url, title);
} else if( window.opera && window.print ) {
return true;
}
}
</script>
<a href="javascript:void(addBookmark(document.title, window.location.href));">Bookmark Us</a> |
| |
| | #4 (permalink) | ||||
| NamePros Regular Join Date: Apr 2005 Location: England
Posts: 610
![]() ![]() |
![]() ????: NamePros.com http://www.namepros.com/code/94525-bookmark-that-works-in-ie-firefox.html Did you make this or find it on a site??? | ||||
| |
| | #6 (permalink) |
| NamePros Regular Join Date: May 2005 Location: Sweden
Posts: 730
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | I tested it on my site and it works!! Used it together with PHP as well, fantastic. Took just a little time to figure out that I had to remove "title,url" in "function addBookmark(title,url)" and replaced then all other occurances of title and url with PHP. Thanks a lot. |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| FireFox problems or IE problems? | skrilla | Web Design Discussion | 7 | 05-01-2005 07:24 AM |
| Internet Explorer 7.0 and CSS2 | Eric | The Break Room | 5 | 04-13-2005 11:12 PM |
| Portable Firefox | dgridley | Free Resources | 2 | 04-03-2005 11:34 AM |
| Wierd FireFox problem! HELP! | ChrisK76 | Web Design Discussion | 8 | 03-24-2005 07:32 AM |
| For those of you who dont use FireFox | GamingHybrid | The Break Room | 21 | 09-12-2004 01:51 AM |