All
I have an iframe with the name and id 'about'
eg. <iframe id='about' name='about' scrolling='no' src='splash.html' >
I have a button that is supposed to load another *local* html file, (by replacing the src) into the iframe.
this works fine in a regular chrome browser, but when I try it on the device, it loads as the main page.
how do i target it into the iframe using javascript.
I believe the code in question is:
document.getElementById('about').src= "file.html";
your help is appreciated. many thanks in advance.
-Jeremy