I have a server running in localhost port 3002 and when i try to send an ajax request from localhost port 3000, the request is not sent in any version of Internet explorer.(Works fine in chrome and firefox). I have also tried using jquery plugin jquery.xdomainajax.js and also i have
def set_access_control_headers headers['Access-Control-Allow-Origin'] = '' headers['Access-Control-Request-Method'] = '' end
method in application controller in code of server running in localhost port 3002.
My requirement: Send an ajax request cross-domain in IE and handle the response. Any help would be highly appriciated.
Thanks in advance