One issue that I encountered was placing an asp control in the bottom right corner of a div, causing overflow in Chrome but not in IE. Even though I set the overflow property to auto, I had to find a temporary solution by delaying the setting of the overflow property for about 5 seconds to allow the control to finish rendering. Initially, my code looked like this:
<div class="layer-wrapper" style="width:100%; height:100%; overflow:auto; position:absolute;">
After removing the overflow property and adding a function at the end of the ready function like below, I was able to solve the problem:
setTimeout(function () {
$(".layer-wrapper").css('overflow', 'auto');
}, 5000);
While this solution worked, I believe there could be a better way to handle this issue. If anyone has any suggestions or can provide assistance, it would be greatly appreciated.