Side navigation
#9032 closed bug (duplicate)
Opened April 30, 2011 04:48PM UTC
Closed April 30, 2011 05:50PM UTC
Last modified April 30, 2011 05:50PM UTC
questionmark "??" problem when ajax operation
Reported by: | xdommy | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | ajax | Version: | 1.5.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
This problem is not closed. In version 1.5.2 persist
If I try this code:
var JSonData = '{"value":"try ??"}';
$.ajax({
type: "POST",
url: "WCF_Services.aspx/DoWork",
data: JSonData,
contentType: "application/json",
dataType: "json",
success: function (input) {
alert(input.d);
}
});
it produce this JSON OBJECT in request:
{"value":"try jQuery1520880517924837633_1304179966549"}
I want to add that the same code works fine in jquery 1.4.4. In jquery 1.5, 1.5.1 and 1.5.2 don't work, produce this bug
Replying to [ticket:9032 xdommy]: