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..