entre tus tags <head>y </head>
coloca lo siguiente:
Código HTML:
Ver original<script type="text/javascript">
/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library ([url]www.dynamicdrive.com[/url])
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at [url]http://www.dynamicdrive.com/[/url] for full source code
***********************************************/
/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
var elem = document.createElement('a');
elem.setAttribute('href',url);
elem.setAttribute('title',title);
elem.setAttribute('rel','sidebar');
elem.click();
}
else if(document.all)// ie
window.external.AddFavorite(url, title);
}
luego ya pones un enlace <a href="javascript
:bookmarksite('Mi sitio', 'http://www.dominio.com')">Agregar a Facoritos</a>
PARA FIJAR LA PAGINA COMO DE INICIO SOLO EN IE funciona así:
<a href="#" onClick="this.style.behavior='url(#default#homepag e)';this.setHomePage('http://dominio.com');">Poner como página de inicio</a>