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)
-   -   Looking for a Bookmark script (https://gfy.com/showthread.php?t=964709)

Ditosta 04-21-2010 04:49 PM

Looking for a Bookmark script
 
Does anyone know of a good bookmark script that can bookmark the page you are currently on without having to hard code the URL ?

Right now I am using javascript and I have to put the url like this

javascript:bookmarksite('mysite', 'http://mysiteurl.com')

fris 04-21-2010 05:06 PM

for your browser? or your actual site, if its your site, you can get the current url say domain.com/teen/videos.html

and get the title

Jdoughs 04-21-2010 05:20 PM

Quote:

Originally Posted by Ditosta (Post 17061650)
Does anyone know of a good bookmark script that can bookmark the page you are currently on without having to hard code the URL ?

Right now I am using javascript and I have to put the url like this

javascript:bookmarksite('mysite', 'http://mysiteurl.com')

PHP Code:

<script type="text/javascript">
function 
bookmarksite()
{
         if (
document.all)
        {
             
// For IE
             
window.external.AddFavorite(location.hrefdocument.title);
         }
        else if (
window.sidebar)
       {
             
// For Firefox
             
window.sidebar.addPanel(document.titlelocation.href"");
        }
}
</script> 

And then where you want it to show:

PHP Code:

    <a href="javascript:bookmarksite();"Bookmark Us!</a


Ditosta 04-22-2010 05:57 AM

Quote:

Originally Posted by Jdoughs (Post 17061747)
PHP Code:

<script type="text/javascript">
function 
bookmarksite()
{
         if (
document.all)
        {
             
// For IE
             
window.external.AddFavorite(location.hrefdocument.title);
         }
        else if (
window.sidebar)
       {
             
// For Firefox
             
window.sidebar.addPanel(document.titlelocation.href"");
        }
}
</script> 

And then where you want it to show:

PHP Code:

    <a href="javascript:bookmarksite();"Bookmark Us!</a


Thanks a million!

VladS 04-22-2010 06:17 AM

You could also check out addthis.com


All times are GMT -7. The time now is 07:46 AM.

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