I am getting error "object does not support property or method" on IE 8 with jquery 1.8 on the following
jQuery(".errorContents");
I am using DWR along with jQuery in my project and also added $.noConflict(); but keep getting the above mentioned error
function addError(){
var errorContents= jQuery(".errorContents");
errorContents.html('Errors in the Page');
errorContents.show();
}