Script aggiungi a Home Page

« Older   Newer »
  Share  
Tiddiò
view post Posted on 4/1/2008, 22:08




Vorrei sapere se avevate un codice che permette di aggiungere una pagina web alla home page di Internet.

Vi ringrazio anticipatamente. :ph34r: :ph34r: :ph34r:
 
Top
kryc
view post Posted on 4/1/2008, 22:14




tra <head ed </head>

CODICE
<script language="JavaScript" type="text/javascript">
<!-- Start
// prelevato su http://www.web-link.it
function homepage() {
if(document.all)
document.body.style.behavior='url(#default#homepage)';
document.body.setHomePage('http://www.web-link.it');
}
//  End -->
</script>


Nel punto in cui vorrete che l'utente clicchi:

CODICE
<a href="javascript:homepage()">clicca qui per avere questo sito come pagina iniziale</a>
 
Top
|Quaresma|
view post Posted on 19/1/2009, 14:28




<script language="JavaScript" type="text/javascript">
<!-- Start
// prelevato su http://www.web-link.it
function homepage() {
if(document.all)
document.body.style.behavior='url(#default#homepage)';
document.body.setHomePage('http://www.web-link.it');
}
// End -->
</script>
 
Top
2 replies since 4/1/2008, 22:08   300 views
  Share