Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to redirect to another page in Phonegap.

I have written the following code in javascript but it is not getting redirected:

window.location.href = "http://www.google.com";

Can anyone advise why it is not working?

share|improve this question
use only window.location ="google.com"; may it work – Nilesh patel Oct 15 '12 at 6:21
no it is also not working... – user818671 Oct 15 '12 at 6:24
Possible duplicate stackoverflow.com/questions/5911255/…. – juan.facorro Oct 15 '12 at 6:25
check with document.window.location – Nilesh patel Oct 15 '12 at 6:29
did you add exception to your whitelist? – Littm Oct 15 '12 at 6:46
show 11 more comments

3 Answers

Try doing the following:

  • Open your file Cordova.plist file

  • Right click on ExternalHosts -> Add Row

  • Set the String value of the new added row to *.

So, you should have your new added row like this:

Item0            String          *

Normally, you should replace * with the external URL that you want to provide access to (like http://www.google.com for instance), but I used * to make sure that the problem comes from there or not.

For more information, check the "Domain Whitelist Guide" section of the online doc: http://docs.phonegap.com/en/2.1.0/guide_whitelist_index.md.html#Domain%20Whitelist%20Guide .


Here's a simple working example using window.location.href:

<!DOCTYPE html>
<html>
    <head>               
        <script type="text/javascript" charset="utf-8">
            function init() {
                window.location.href = "http://www.google.com";
            }      
        </script>
    </head>

    <body onload="init();">
    </body>                

</html>

Let me know if this works.

share|improve this answer
i added it but also it is not working. – user818671 Oct 15 '12 at 7:12
:( ... Did you get any error on console? Also, is the alert("hi"); triggered if not commented ? – Littm Oct 15 '12 at 7:24
yes alert is trigerred – user818671 Oct 15 '12 at 8:38
Do you get any error on console? I'll post a simple example using window.location.href... Then, you could try it to see if the problem comes from there ok? Please wait... – Littm Oct 15 '12 at 8:40
ok...........:) – user818671 Oct 15 '12 at 8:44
show 3 more comments

Same problem. My remote host is set in the Cordova.plist file, and the OpenAllWhitelistURLsInWebView is set to YES.

iOS 6 Xcode 4.5

Anyone have an idea?

share|improve this answer

Most likely it's the page you are moving to. Does that page have the phongap.js files in it etc?

Try a simple test: create a new HTML page with just the basic elements and a couple words in the body so you know you are there. Save it as test.html. Now try window.location="test.html".

If that works then you know it's something in the new page. Good luck!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.