| | |||||
| ||||||||
| 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) | ||||||||||||||||
| Account Closed Join Date: Oct 2005 Location: India
Posts: 633
![]() ![]() ![]() | |
| Quote: |
|
<script type="text/javascript"> /*********************************************** * Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use ***********************************************/ /* Modified to support Opera */ function bookmarksite(title,url){ if (window.sidebar) // firefox window.sidebar.addPanel(title, url, ""); else if(window.opera && window.print){ // opera var elem = document.createElement('a'); elem.setAttribute('href',url); elem.setAttribute('title',title); elem.setAttribute('rel','sidebar'); elem.click(); } else if(document.all)// ie window.external.AddFavorite(url, title); } </script> |
| Quote: |
| javascript:bookmarksite('title_of_site', 'url_of_site') |
| Quote: |
| <a href="javascript:bookmarksite('FlickArcade', 'http://www.flickarcade.com')">Bookmark this site!</a> |
| Quote: |
| <a href="javascript:bookmarksite('Mike\'s Place', 'http://www.google.com')">Bookmark this site!</a> |
| | #3 (permalink) |
| Danltn.com Join Date: May 2007 Location: Danltn.com / Nottingham, UK
Posts: 1,201
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Thats a LOT of Javascript in the head tag that really is not needed. This should work just as well, tested in IE6+7, Opera, FF and worked fine. http://neville.tk/bookmarkcreation.php Example: Code: <a href="http://namepros.com" rel=sidebar name="Favourite us" title="NamePros Homepage" onClick="javascript:window.external.AddFavorite('http://namepros.com','NamePros Homepage');return false">Bookmark us!</a>
__________________
Last edited by Danltn; 08-18-2007 at 02:11 AM.
|
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |