I think CrossDomain is not allowed in your browser ( and certainly all
other correct configured browsers like FF/Moz).
I happened to me to, a workaround to this is creating a local server
side script to process your input and send that to the server you
intended to send your data in the first way.
On 31 okt, 22:55, kiran <[EMAIL PROTECTED]> wrote:
> Hi i am trying to post the data back to a server with the following
> data element ...... but not able to post it and getting an error
>
> data1 =
> {"id":"1008","country":"us","language":"en","username":"k","password":"k"};
>
> var options1 = {
> type: 'POST',
> url: "http://www.bluebam.xxx.com/dn?",
> contentType: "application/x-www-form-urlencoded",
> type:"jsonp",
> data : data1,
> processData: false,
> success: function (dat){alert(dat)},
> accepts: {json: "application/json, text/javascript"}
> };
>
> jQuery.ajax(options1);
>
> }
>
> error :
>
> uncaught exception: Access to restricted URI denied
> (NS_ERROR_DOM_BAD_URI)
>
> Did i miss any thing , i have to post it only as it has password
> info .
>
> any sugenstions ?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---