• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Second ajax call not running in web page when running kitkat webview

I have a simple html page that makes two requests to render data.
The first request runs fine but when I reach the second second request it just does not execute.

```
$.ajax({
url: Url_secondRequest,
type: "GET",
dataType: 'json',
success: function(data) {
document.getElementById('dataContainer') = data;

render_secondRequest(data);
},
error: function(req, txt, err) {
var errObj = JSON.parse(req.responseText);
console.log(errObj.message);

}
});

```
 

BEST TECH IN 2023

We've been tracking upcoming products and ranking the best tech since 2007. Thanks for trusting our opinion: we get rewarded through affiliate links that earn us a commission and we invite you to learn more about us.

Smartphones