[jQuery] Re: Apply "xpath-evaluate" in an iframe document

2007-09-18 Thread julio
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

2007-09-18 Thread Christof Donat
Hi, > // not working > $(frameDocument).("//img").hide(); Try $('img',frameDocument).hide(); Christof