Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Redirecting to local html page from javascript in phonegap

I am working on phonegap application. I am trying to login and on click of the submit button in the Login.html i should be redirected to a local html file.

Login.html

<tr>
    <td>&nbsp;</td>
    <td>
        <input type="submit" class="submitbtn" name="submit"
            id="submit" value="Login" onclick="loginCheck()">
    </td>
</tr>

loginValidation.js

if (validCustomer == true) {

    alert("valid customer........");
    document.location.href("file:///android_asset/www/Category.html"); 

But document.location.href or window.location/window.open doesn't work. Can anybody help on this issue? If i use window.open and run the application in emulator it works fine but not in the device.

like image 759
AndroGeek Avatar asked Oct 04 '11 06:10

AndroGeek


2 Answers

you can try this

window.open("mainpage.html",'_self');

this will open page in current window so that current window page data get flush and new page data will render in same window page dom.

like image 103
hemant.patel Avatar answered Nov 15 '22 16:11

hemant.patel


try using relative path, this should work:

window.location="Category.html";
like image 28
Dmitry F Avatar answered Nov 15 '22 16:11

Dmitry F