
Originally Posted by
Dellius
I doubt that because the moment the page is loaded by a user's browser it is already located on their hard drive.
Don't. It is, but javascript cannot access the user's hard drive either. It isn't a question of the values not being 'available'. It is a question of security measures in modern browsers. In the old days you could just use:
Code:
iframe_element_object.document.innerHTML
Where iframe_element_object is the iframe fetched via document.all or document.getElementById (or any method that 'gets' it as page element, as opposed to as a window frame) and parse that string using your favorite method to get what you are after. Or even:
Code:
iframe_element_object.document.getElementById('some_id').innerHTML
to query a particular element on the page's innerHTML. But this is no longer allowed or supported, except for pages that are both on the same domain.
Bookmarks