![]() |
|
|||
|
Hi this will help you to add an add to bookmarks script to your site.
Edit: js/myjavascriptfx.js Add the following to the bottom of the above file: Code:
// Add to favorites - BEGIN
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);
}
// Add to favorites - END
You can see it in action at : http://www.youtwatonline.com at the footer of the site. Enjoy, Mat. P.S You can add this to header.tpl instead of footer.tpl but do not add it to footer.tpl and header.tpl at the same time or your get an error.
__________________
------------------------------------ Make an arse of yourself: http://www.youtwatonline.com ------------------------------------ |
|
|||
|
Hi,
I designed the layout. I'm a web designer and PHP developer, and as such would love to be able to help out more with this script. Regard, Mathew.
__________________
------------------------------------ Make an arse of yourself: http://www.youtwatonline.com ------------------------------------ |
|
|||
|
Yer sure, PM me.
__________________
------------------------------------ Make an arse of yourself: http://www.youtwatonline.com ------------------------------------ |
|
|||
|
WOW -- Ur site is amazing!
__________________
SPEED UP YOUR VSHARE SITE! Speed up your vshare site by "offloading" your images and video thumbs! Just visit http://offload.limbar.com for details. |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Adding Bookmark Javascript Breaks my site | freepo | General Discussions | 6 | 12-10-2009 09:14 AM |
| Bulk Importer/Bookmark | spun2u | Fixed Bugs | 2 | 08-12-2007 03:26 PM |