I have a page that is straight from the jQueryMobile site. I'm including a table of names, but on the iPad, it doesn't allow the user to pinch the screen size.
Asked
Active
Viewed 9,555 times
1 Answers
4
Please refer to this answer:
http://forum.jquery.com/topic/problem-with-the-zoom-on-ipad
In short, jQuery Mobile injects a fixed viewport size into the page.

Keith Adler
- 20,880
- 28
- 119
- 189
-
Yeah. I was able to add $(document).bind("mobileinit", function(){ $.mobile.metaViewportContent = "width=device-width"; }); prior to the jQueryMobile.js and it works now. Thanks! – Phillip Senn Apr 25 '11 at 19:42