"Make us your home page" link?

Discussion in 'HTML & Website Design' started by mike323, Oct 3, 2006.

  1. #1
    I trying to find a script/code for creating a "Make us your home page" link or "Bookmark us" link for my website.

    I found one but it only works in Internet Explorer browser. Doesanyone know if there any that work in both Mozilla and IE? Thank you. :)
     
    mike323, Oct 3, 2006 IP
  2. jestep

    jestep Prominent Member

    Messages:
    3,659
    Likes Received:
    215
    Best Answers:
    19
    Trophy Points:
    330
    #2
    There is no way to make it work in mozilla. Only IE works. The same thing goes for 'bookmark this page' links.
     
    jestep, Oct 3, 2006 IP
  3. mike323

    mike323 Well-Known Member

    Messages:
    1,594
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    160
    #3
    Thanks for the info. guess we'll have to wait for future versions of mozilla. :)
     
    mike323, Oct 3, 2006 IP
  4. Pat Gael

    Pat Gael Banned

    Messages:
    1,331
    Likes Received:
    68
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Pat Gael, Oct 3, 2006 IP
  5. mrj052

    mrj052 Peon

    Messages:
    33
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    :D Wow thanks a lot ... i will try it
     
    mrj052, Oct 3, 2006 IP
  6. mike323

    mike323 Well-Known Member

    Messages:
    1,594
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    160
    #6
    The promotion bar that comes with the code from successpub.com is too large for how I want to use it on my site. Too bad.

    anyway...I found another one...but it has it's drawbacks too..

    http://www.webmastercourse.com/sample-page/bookmark-java/

    It has a lot of code to it, and it still doesn't work in mozilla ... but it does remind mozilla users to bookmark your site manually..

    maybe it will work for some people but i'm concerned all that code will slow down the load time of my pages...oh well..i'll keep looking.. :)
     
    mike323, Oct 4, 2006 IP
  7. mike323

    mike323 Well-Known Member

    Messages:
    1,594
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    160
    #7
    Okay...I found yet another one that works in both mozilla and IE.

    However, I tested it on my page in mozilla and it bookmarks fine...but when I go to my bookmarks and click on the saved page in mozilla instead of opening the full page, the browser opens only a quarter of the page..anyone know how to fix this?

    To see what I mean, please someone go to this page:

    http://www.thedailysearch.com/latenight.php

    and bookmark it in mozilla using the "bookmark this site" link above the menus to the right. then open your bookmarks in mozilla and try to go to the page. let me know what happens...thanks..

    btw...here is the link for the bookmarking script:

    http://www.dynamicdrive.com/dynamicindex9/addbook.htm
     
    mike323, Oct 4, 2006 IP
  8. LongHaul

    LongHaul Peon

    Messages:
    670
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    0
    #8
    I found one script (sorry, can't remember the site, do a Google search for favorites javascript opera, that should work) that bookmarks the site if you have IE, and brings up an alert window that you can reword explaining what to do otherwise. For example, "Opera: Ctrl-D to bookmark. Macintosh: Command-D to bookmark" or whatever it is.

    Actually, it doesn't work for me, even in IE! But I hope it's because I'm on a Mac; I haven't tested it out on a Windows yet.

    But that is another approach you can take; have your script pop up an alert if your user's browser can't be accessed directly by the script.
     
    LongHaul, Oct 5, 2006 IP
  9. DatR

    DatR Peon

    Messages:
    210
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #9
    this javascript function works for me in IE and firefox and i'm using it for a site i'm developing now:

    the html:
    <a href="javascript:bookmarksite("Bookmark Title", "http://www.site.com")">

    the javascript:

    function bookmarksite(title, url){
    if (document.all)
    window.external.AddFavorite(url, title);
    else if (window.sidebar)
    window.sidebar.addPanel(title, url, "")
    }
     
    DatR, Oct 6, 2006 IP