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?
<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>
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
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![]