Skip to main content

Bug Tracker

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"}

Attachments (0)
Change History (3)

Changed April 30, 2011 05:11PM UTC by anonymous comment:1

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]:

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"}

Changed April 30, 2011 05:50PM UTC by rwaldron comment:2

component: unfiledajax
priority: undecidedlow
resolution: → duplicate
status: newclosed

Changed April 30, 2011 05:50PM UTC by rwaldron comment:3

Duplicate of #8417.