Opened 12 years ago
Closed 12 years ago
#8578 closed bug (invalid)
"No Conversion from text to text/html" in .ajax() call
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | 1.next |
Component: | ajax | Version: | 1.5.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Sample call:
$.ajax({
url: "/local/uri", type: "GET", dataType: "text/html", success: function (data) {
doSomething();
}, error: function (xmlHttpRequest, textStatus, errorThrown) {
alert("AJAX Error: " + errorThrown);
}
})
Workaround - Reverting to 1.4.4 "corrected" the issue.
Change History (2)
comment:1 Changed 12 years ago by
comment:2 Changed 12 years ago by
Component: | unfiled → ajax |
---|---|
Resolution: | → invalid |
Status: | new → closed |
dataType should be "html", not "text/html".
Note: See
TracTickets for help on using
tickets.
I was also able to reproduce in jsFiddle. I would attach the code (which is similar to the above), but Trac was preventing me from doing so.