Hello all,
I make use of class selectors in JQuery and this works fine but in IE6 this fails as it does not apply the width I would like.
$('.ui-state-default .ui-jqgrid-hdiv').css('width', width);
If I try it one class it works?? But I need to apply that width to a div that has both those classes.
Thanks all for any help.
Update
$onselect = <<<loadComplete
function go_size(){
var width = document.documentElement.clientWidth - 45;
$('#gbox_grid').css('width', width);
$('#gview_grid').css('width', width);
$('#pager').css('width', width);
$('.ui-state-default .ui-jqgrid-hdiv').css('width', width);
$('.ui-jqgrid-bdiv').css('width', width)
}
loadComplete;