
- Javascript Basics Tutorial
- Javascript - Home
- Javascript - Overview
- Javascript - Syntax
- Javascript - Enabling
- Javascript - Placement
- Javascript - Variables
- Javascript - Operators
- Javascript - If...Else
- Javascript - Switch Case
- Javascript - While Loop
- Javascript - For Loop
- Javascript - For...in
- Javascript - Loop Control
- Javascript - Functions
- Javascript - Events
- Javascript - Cookies
- Javascript - Page Redirect
- Javascript - Dialog Boxes
- Javascript - Void Keyword
- Javascript - Page Printing
- JavaScript Objects
- Javascript - Objects
- Javascript - Number
- Javascript - Boolean
- Javascript - Strings
- Javascript - Arrays
- Javascript - Date
- Javascript - Math
- Javascript - RegExp
- Javascript - HTML DOM
- JavaScript Advanced
- Javascript - Error Handling
- Javascript - Validations
- Javascript - Animation
- Javascript - Multimedia
- Javascript - Debugging
- Javascript - Image Map
- Javascript - Browsers
- JavaScript Useful Resources
- Javascript - Questions And Answers
- Javascript - Quick Guide
- Javascript - Functions
- Javascript - Resources
Can zooming be disabled with HTML5
To disable zooming capabilities in responsive design, you need to create a META viewport tag.
With that, set the user-scalable property to 'no' like:
user-scalable=no
Add the following in your HTML code to disable zooming capabilities in responsive design:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
- Related Articles
- How to disable zooming capabilities in responsive design with HTML5?
- Prevent iPhone from zooming in web-app with HTML \n
- Set disabled links with Bootstrap
- Style every disabled element with CSS
- Can the HTML5 Canvas element be created from the Canvas constructor?
- How to specify that an input element should be disabled?
- Client side image zooming and rotating in Django
- What can be done with style sheets that can not be accomplished with regular HTML ?
- Create a disabled look of a button with CSS
- Get a muted look with .disabled in Bootstrap Pager
- Can scripts be inserted with innerHTML?
- Can a user disable HTML5 sessionStorage?
- Image button with HTML5
- Backward compatibility with HTML5
- HTML disabled Attribute

Advertisements