Your Internet Explorer version is not compatible with our shopping cart system. Please use version 9 or higher to avoid problems with your order(s). Close
H can I access an element out of iframe? I created an iframe on a page and would like to hide or show a button on the page from iframe. I have tried:
var b = parent.document.getElementById(‘m1-registerNewAccountFB-pushContinue’);
$(b).show();
it works on the simulator, but does not work on real android device. I did some research and realized that parent on simulator is a Window class but on Android is DOM Window class. Any idea how I can access parent?
Before investigating how to manipulate iframe elements have you confirmed that the expected level of interaction is working correctly, e.g., tap, scrolling, …? I recall that users on ios have been surprised by the iframe touch model performs terribly for setting focus, frame sizing and touch interaction.