[jQuery] Re: Apply "xpath-evaluate" in an iframe document
Thanks, your suggestion has worked. But I have again a problem. This is the page in iframe: test page test-row1 another row test-row2 I need to apply an absolute xpath, and so I have tried with this: $('/HTML/BODY/IMG',frameDocument).hide(); and it works, but it doesn't work with ind
[jQuery] Re: Apply "xpath-evaluate" in an iframe document
Hi, > // not working > $(frameDocument).("//img").hide(); Try $('img',frameDocument).hide(); Christof