I need to use as a selector an element from DOM inside an iFrame.
Thanx in advance.
I need to use as a selector an element from DOM inside an iFrame.
Thanx in advance.
You can not access anything in an iframe with JavaScript running outside this frame.
Browsers has a same origin policy to prevent security problems like phishing
(If you host the content of this iframe your self you may have a look at jQuery load() to load HTML chunks into your page)