I\'m trying to understand why this ajax called doesn\'t work
$.ajax({ type: \'GET\', url: \"http://localhost:8732/Design_Time_Addresses/InMotion
This link would help: http://enable-cors.org/
You need to add the following headers in your response that is sent back to the client:
//Allow all domains
Access-Control-Allow-Origin: *
OR
//Allow specific domains
Access-Control-Allow-Origin: http://example.com:8080 http://foo.example.com