Block zoom in HTA -
i have hta has structure:
<html> <head> <!--head elements--> </head> <body> <div id="toolbar"> <!--toolbar elements--> </div> <div id="mainframe"> <!--main frame elements--> </div> </body> </html> when zoom (for example holding ctrl key down , scrolling), changes zoom in whole document, including in toolbar. want zoom in main frame, , leave toolbar @ 100% zoom. there way this?
you can this:
<body onmousewheel="javascript:if(window.event.ctrlkey){return false}">
Comments
Post a Comment