user1761126
user1761126

Reputation: 1

Is it possible to load .load() function using jquery for windows phone in phonegap

Please give any sample example for load function using jquery for windows phone in phonegap.

Can we use

("#home").load("new.html");

In windows phone. I tried like this but it is not working. Please suggest me any solution for this....

Upvotes: 0

Views: 91

Answers (1)

Rahul Lamkhade
Rahul Lamkhade

Reputation: 19

check if load function is working or not like

$("#home").load("new.html", function(){
    alert("Done!");
});

Upvotes: 1

Related Questions