javascript - Error: Access is Denied coming in response? -


i have code

$.ajax({     url: sserviceurl + 'submitdata',     type: 'get',     data: json.stringify(selecteddata),     contenttype: 'application/json;charset=utf-8' }).done(function (data) {  }).fail(function (status) {  }) 

as request, entered same url on in browser , when hit enter, getting correct response. when try using jquery, request fails , error response contains: error: access denied


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -