Hi,
I'm trying to dynamically change the height of the mobileheader object in my project.
I've initially achieved this by applying some static CSS as follows:
.classHeader { height:12px; }
But, as this changes depending upon the target host, I want to do this in javascript and remove the static CSS.
I've tried various code, but nothing seems to apply, here's what I've tried so far:
$('.mobileheader').css("height","12px");
and
$("[dsid=mobileheader]").css('height',"12px");
can you help me solve this please?
many thanks
Andy.