Our objective is to implement a media query css class
.
Currently, the code is utilizing $(window).height()
to determine the height
.
$('#list').jqGrid('setGridHeight', $(window).height() - 380);
Instead of relying on $(window).height() - 380
, I am looking to integrate a css class
for this purpose. Appreciate your help.