1. If a popup window is open, how to disable parent window scroll bar (fix in IE8 through overflow hidden but still open in IE6)
Soln:
If(navigator.appVersion.match(/MSIE[\d.]+/)==”MSIE 6.0”)
{
Document.body.scroll=”no”;
}
Else
{
Document.body.overflow=”hidden”;
}
2. Click on any button dotted outline is occur (fix in IE8 through outline:0 but still open in IE6)
Soln:
onFocus=”if(this.blur)this.blur()”