[jQuery] IE issue with .ajax()
Anyone run into an "Error: Could not complete the operation due to
error 80020101." when doing an $.ajax call in IE? It works in FF/OP
just fine.
The call is as follows and is triggered via an onchange() event from a
<select> dropdown:
$.ajax({
type: "POST",
cache: false,
url: "documentsearchlogic.asp",
data: queryString,
success: function(html){
$("#criteria").html(html);
}
});