dealing with json?
if ( status == "success" ) {
// Watch for, and catch, XML document parse errors
try {
// process the data (runs the xml through httpData regardless of
callback)
data = jQuery.httpData( xml, s.dataType );
} catch(e) {
status = "parsererror";
}
The call is:
$.ajax({ type: "POST", contentType: "application/json; charset=utf-8",
url: "getColors.aspx",
data: "{}",
dataType: "json",
success: function(data) {
$(dropdownSet).loadSelect(data);
adjustSizeDropdown();
},
error: function(xhr) {
$('#errorDisplay').html('Error: ' + xhr.status + ' '
+ xhr.statusText);
$('#errorDisplay').css('display', 'block');
} });
No comments:
Post a Comment