GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   AddBookmark javascript that works with both Moz/IE (https://gfy.com/showthread.php?t=463512)

bangman 05-04-2005 12:53 AM

AddBookmark javascript that works with both Moz/IE
 
Use this script for an addbookmark that works with both IE and Firefox.
See it in action @ http://www.teenieupdate.com

Between <head> tags:
Code:

<script>
function addBookmark(title,url) {
                //alert('adding ' + 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>

At Location:
Code:

javascript:void(addBookmark('Site title here', window.location.href));
Hope some of you find this useful :)


All times are GMT -7. The time now is 12:44 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123