My web page was functioning perfectly until the release of iOS 7 by Apple today, causing the layout to break when the screen orientation is changed.
When focusing on a text area and rotating the screen to landscape view, the entire page zooms in. However, if the focus is taken out of the text area and returned to Portrait mode, everything returns to normal.
The rotation functions properly when the text areas do not have focus.
I already have the following meta-tag implemented (to prevent zooming):
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0;;">
Does anyone have any insights into what might be causing this unusual behavior?