I want to give the visitors of my website the choice to set their homepage to my website. In the past it was possible to use the SetHomePage function. Has the function changed or is it deprecated?
Asked
Active
Viewed 392 times
0
-
Last time I saw that function working was in IE6 or something, it's very likely gone. – Pekka Jul 28 '15 at 14:53
-
http://stackoverflow.com/questions/438108/set-default-home-page-in-javascript – Pekka Jul 28 '15 at 14:54
1 Answers
1
SetHomePage is no longer supported. Due to malicious behavior, there is no current equivalent for JavaScript, however, there is a C++ interface available to IE BHOs and extensions. (This interface is presumably not available to MS Edge.)
SetHomePage was implemented as part of the legacy binary behaviors library, introduced with IE5. (Note that the linked blog post describes changes made more than ten years ago.) It was deprecated in IE9 and made obsolete with IE10, though you could still call the feature from document modes that supported it. Support was finally removed with the release of IE11.
To my knowledge, there is no standards-based equivalent feature.
Hope this helps...
-- Lance

Lance Leonard
- 3,285
- 3
- 16
- 15