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
-~----------~----~----~----~------~----~------~--~---

Reply via email to