-3

Possible Duplicate:
How can I set default homepage in FF and Chrome via javascript?

Is there a javascript function which can prompt the user to set the current page as homepage?

I need something that works on modern browsers.

Thanks!

Community
  • 1
  • 1
rawrrrrrrrr
  • 3,647
  • 7
  • 28
  • 33

2 Answers2

1

There is the setHomePage function that is IE specific.

See this SO thread for alternatives.

Community
  • 1
  • 1
Oded
  • 489,969
  • 99
  • 883
  • 1,009
1
<INPUT TYPE="button" VALUE="Make This Site Your Home Page" onClick="this.style.behavior='url(#default#homepage)'; this.setHomePage('Page URL beginning with http:// here');">
Steve
  • 50,173
  • 4
  • 32
  • 41