2

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.

Phillip Senn
  • 46,771
  • 90
  • 257
  • 373

1 Answers1

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