How to add a button to make a page someones homepage?

Discussion in 'HTML & Website Design' started by JamesIsDusk, May 3, 2012.

  1. #1
    I want to add a button onto one of my pages on my site to have someone with the option to make that page their homepage. How can i do this? And what browsers does it work on?
     
    JamesIsDusk, May 3, 2012 IP
  2. ezprint2008

    ezprint2008 Well-Known Member

    Messages:
    611
    Likes Received:
    15
    Best Answers:
    2
    Trophy Points:
    140
    Digital Goods:
    1
    #2
    <a href="#" onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://YOUR_PAGE_HERE.com');">Click here to make YOUR PAGE HERE your default homepage</a>
     
    ezprint2008, May 4, 2012 IP
  3. HawnanNahian

    HawnanNahian Peon

    Messages:
    12
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Try this
    <a href="hash" onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://asp.net');">Click here to make this your default homepage</a>


    replace "hash" of href to "#"
    Thanks
     
    HawnanNahian, May 5, 2012 IP
  4. HawnanNahian

    HawnanNahian Peon

    Messages:
    12
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Just Try this.
    <script type="text/javascript">
    function CreateBookmark()
    {
    var title = 'Visual Search';

    var url = 'http://www.visual-search.net';
    if(window.sidebar)
    {
    window.sidebar.addPanel(title, url, "");
    }
    else if(window.external)
    {
    window.external.AddFavorite(url, title);
    }
    else
    {
    alert("The page could not be added to your favorites.");
    }
    }
    </script>
    <input onclick="this.style.behavior='url(#default#homepage)'; this.setHomePage('http://www.visual-search.net');" type="button" value="Home Page" style="z-index: 102; left: 40px; position: absolute; top: 390px; width:100px; background-color:Yellow;" />
    Hawnan Ahmed Nahian![:)]

     
    HawnanNahian, May 5, 2012 IP
  5. JamesIsDusk

    JamesIsDusk Guest

    Messages:
    52
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    These codes don't seem to be working for me? Any reasons why?
     
    JamesIsDusk, May 7, 2012 IP