How do I get ajax working on android?

0 favourites
  • 3 posts
  • I love this engine. I was planning to buy this engine but after some reading regarding AJAX request is not supported in Intel XDK android build, I change my mind. Does anyone get the Ajax request working on Intel XDK works? If you do mind sharing me your option?

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Hi,

    I have same problem not yet found any fixed solution. but - here is a working example of AJAX call in Intel XDK, you can try it in Intel XDK and on device, replace the URL with yours and try

    <html>

    <head>

    <title>AJAX and XDK</title>

    <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0;" />

    <script type="text/javascript" charset="utf-8" src="http://code.jquery.com/jquery-2.0.3.min.js"></script>

    <script src="intelxdk.js"></script>

    <script src="xhr.js"></script>

    <script>

    function doAJAX() {

    $.ajax({

    type:'GET',

    url:'http://time.jsontest.com/',

    success: function (data) {

    alert(JSON.stringify(data))

    }

    });

    }

    </script>

    <style>

    body {font-family:arial;background-color:white}

    </style>

    </head>

    <body>

    <h3>AJAX Call</h3>

    <button onclick="doAJAX()">AJAX Call</button>

    </body>

    </html>

  • Try removing the protocol in the url you are sending the request to.

    Change:

    time.jsontest.com

    To:

    //time.jsontest.com/

Jump to:
Active Users
There are 1 visitors browsing this topic (0 users and 1 guests)