Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have loaded website into my phonegap application using iFrame.

    <iframe id="divIFrame" src="https://mysite" border="0"></iframe>

I have used below css to set zoom level of iFrame content

       #divIFrame {
           -moz-transform: scale(0.45, 1.00);
            -webkit-transform: scale(0.45, 1.00);
            -o-transform: scale(0.45, 1.00);
            -ms-transform: scale(0.45,1.00);
            transform: scale(0.45, 1.00);
            -moz-transform-origin: top left;
            -webkit-transform-origin: top left;
            -o-transform-origin: top left;
            -ms-transform-origin: top left;
            transform-origin: top left;
            border: solid #ccc 10px;

        }

After included the style to my iframe, i can't enter values into the textboxs in iframe content(mysite). the textbox, radio buttons are not working in mysite that loaded into iFrame.

the textboxs working fine when i remove above the zoom css. how to solve this issue? please help me..

share|improve this question
the input fields not working when i resize the iframe content using this line -webkit-transform: scale(0.50). its working when i scale to (1.0) using -webkit-transform: scale(1.00).. what might be problem? this is phonegap issue? – user985393 Dec 1 '12 at 6:10
More likely a mobile safari issue - it is an unusual requirement, and mobile safari has somewhat limited iframe support. – Tom Clarkson Dec 3 '12 at 3:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.