|
Viewing Single Post From: Add us to your Favorites
|
|
Codes Rock
|
Jul 23 2008, 03:42 PM
|
<?php echo 'Codes Rock rocks!'; ?>
- Posts:
- 321
- Group:
- Members
- Member
- #172,002
- Joined:
- July 18, 2008
- I'm Browsing With
- Firefox 3
- My Board URL
- http://s1.zetaboards.com/ImageTools/
|
- ExTaCy1337
- Jul 22 2008, 05:57 PM
Yes someone post a js script for all broswers... Especially for Firefox :/ This is a cross browser (Firefox 1.x+, IE4+ and Opera7+) script for allowing the user to easily bookmark your site, by clicking on a link on the page.
Step 1: Add the below code to the <head> section of your page:
- Code:
-
<script type="text/javascript">
/*********************************************** * Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/
/* 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>
Step 2: Create either an image or text link that will be used as the Bookmark Site link. For the href attribute, use the following code:
- Code:
-
javascript:bookmarksite('title_of_site', 'url_of_site')
Here's an example:
- Code:
-
<a href="javascript:bookmarksite('Image Uploader Example', 'http://z4.invisionfree.com/HMIS_Example2/')">Bookmark this site!</a>
Remember, if your site's title contains apostrophes, they need to be backslashed when entered:
- Code:
-
<a href="javascript:bookmarksite('Mike\'s Place', 'http://www.google.com')">Bookmark this site!</a>
|
|
|