In my android phonegap app,sometimes i get the application error as
Note when moving from one page to another page am getting this error
**"A network error occurred.(file:///android_asset/www/home/home.html?userid=91)"**
and app gets force closed .Please guide me to solve this problem.I am also attaching the screenshot.Its cuming in android 4.x versions
update
$.ajax({
cache: false,
async: true,
type: "POST",
dataType: "json",
url:url +"Status",
data: '{"NO" : "' + no}',
contentType: "application/json;charset=utf-8",
success: function (r)
{
window.open("../index/index.html?id="+id);
},
error: function (e)
{
alert("No Network");
}
});