Do you want to install the Windows Phone 8 SDK on Visual Studio 2013? Don’t try with the SDK package; you must install the SDK through the Visual Studio 2013 setup. If you have Visual Studio 2013 installed you can modify the setup configuration adding the Windows Phone 8 SDK.
Monthly Archives: December 2013
How-to make Ajax call via jQuery
If you want to be able to call web services through an ajax call via jquery, you can use this little piece of code:
$.ajax({ url: "yourwebserviceurl", type: "GET" //the http request type, dataType: "json" //the expected data type returned by web service success: function(response) { //do something here with response object if call goes OK }, error: function() { //do something here if call goes KO } });
more informations here