Skip to content

Instantly share code, notes, and snippets.

View liorocks's full-sized avatar

Lio liorocks

View GitHub Profile
@liorocks
liorocks / mousewheel.md
Last active August 29, 2015 14:14
Cross-Platform Javascript Disable/Enable Mousewheel

##Disable

document.onmousewheel = function(){ stopWheel(); } /* IE7, IE8 */
if(document.addEventListener){ /* Chrome, Safari, Firefox */
    document.addEventListener('DOMMouseScroll', stopWheel, false);
}
 
function stopWheel(e){
@liorocks
liorocks / Disable Font Size Changing on Landscape Mode.css
Last active May 14, 2024 22:51
iPhone Web Application Development Tips
body {
-webkit-text-size-adjust: none;
}