http://stackoverflow.com/questions/21890565/intel-xdk-doesnt-let-me-make-ajax-calls
<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>
No comments:
Post a Comment