I am getting a weird “invalid property value error” which only happens in IE7. This is my code:
showTypes = function(id,projNum,flag) {
formData = 'vw=blah&id='+id+'&projNum='+projNum+'&flag='+flag;
$.ajax({
type: "post",
url: "myURL.cfm",
data: formData,
cache: false,
success: function(result) {
$('#jqmTitle').html('Details for : '+projNum);
$('#jqmText').html(result);
$('#jqmTypes').jqmShow();
},
error: function(xmlHttpRequest, status, err) {
confirm('Error!' + err );
}
});
}
it breaks on $(‘#jqmText’).html(result);
any help?
UPDATE: it looks like IE7 does not like one of the following:
$('#blah-9').attr('disabled', true);
$('#blah-9').css('color','grey');
wow. IE7 does not like grey, replaced it with #CCC and it worked .