Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

universal javascript for set homepage functionality [duplicate]

Is there any javascript that works on almost all browsers for setting a webpage as homepage?

I am using below one. But it only works for i.e. and mozilla

    var flag = false;
    function setHomepage(web)
    {
        if (document.all)
        {
            document.body.style.behavior='url(#default#homepage)';
            document.body.setHomePage(web);

        }
        else if (window.sidebar)
        {
            if(window.netscape)
            {
                try
                {  
                    netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
                    flag = true;  
                }  
                catch(e)  
                {  
                    alert("This action was aviod by your browser. If you want to enable please enter about:config in your address line,and change the value of signed.applets.codebase_principal_support to true");
                }
            } 
            if(flag)
            {
                var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch);
                prefs.setCharPref('browser.startup.homepage',web);
            }      
        }
    }
like image 925
Ashish Rajan Avatar asked Jun 19 '10 12:06

Ashish Rajan


1 Answers

This is an earlier discussion thread on the subject: How can I set default homepage in FF and Chrome via javascript?

Basically, there's no universal support and changing the homepage is generally considered a very annoying thing to do.

like image 93
Mathiasdm Avatar answered Oct 03 '22 00:10

Mathiasdm