You need to be logged in to post in the forums. If you do not have an account, please sign up first.
The scroll bar does not adjust itself when change a frame's size
I used javascript to adjust the top frame's size and the scroll bar in main frame appears not working correctly.$('#adjust-room').click(function(){
if($('#topbanner').css('display') != 'none') {
$('#topbanner').hide();
$('frameset', window.parent.document).attr('rows', '20,*');
} else {
$('#topbanner').show();
$('frameset', window.parent.document).attr('rows', '135,*');
}
});
before adjust frame:

after: