Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 22nd, 2012  |  syntax: None  |  size: 0.48 KB  |  hits: 38  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to disable toggling of landscape/portrait on a mobile web app (Android Browser/iOS-Mobile Safari)
  2. window.addEventListener("orientationchange", function (e) {
  3. e.preventDefault();
  4. e.stopPropagation();
  5. }, false);
  6.  
  7. window.addEventListener("resize", function (e) {
  8. e.preventDefault();
  9. e.stopPropagation();
  10. }, false);
  11.        
  12. <meta name="viewport" content="initial-scale=1.0, user-scalable=no />
  13.        
  14. <meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width" />