[jQuery] Re: How to suck web content from an iframe to a div

2007-10-19 Thread Mike Alsup
Julian, Getting the contents from an IFrame served from the same domain works fine. The security only kicks in for x-domain content. Mike On 10/15/07, juliandormon [EMAIL PROTECTED] wrote: Thanks Mike, That makes sense. And what if it was the same domain? This is also the case with our

[jQuery] Re: How to suck web content from an iframe to a div

2007-10-19 Thread Erik Beeson
IIRC, sub-domains can also be made to work if all pages involved set the same document.domain But back to the OP, your iframe can deal with scrolling itself if you set its size in the containing page, and that you can do cross-domain. Maybe I don't quite get what you're trying to do... --Erik

[jQuery] Re: How to suck web content from an iframe to a div

2007-10-15 Thread Mike Alsup
Julian, You cannot access the contents of an IFrame which is sourced from a different domain. This is part of the browser's cross-domain security model. Mike On 10/15/07, juliandormon [EMAIL PROTECTED] wrote: Hoping anyone can help. I use a custom scroll bar jquery plug-in which requires

[jQuery] Re: How to suck web content from an iframe to a div

2007-10-15 Thread juliandormon
Thanks Mike, That makes sense. And what if it was the same domain? This is also the case with our new site. I should have been more specific. I apologize. malsup wrote: Julian, You cannot access the contents of an IFrame which is sourced from a different domain. This is part of the