[jQuery] Re: Using JQuery Effects in Parent Window from iFrame?

2008-03-28 Thread Jiming
I tried the method, it works with $(#myid, parent.document.body); Thanks for this tip! Jiming On Mar 8, 4:03 am, tlphipps [EMAIL PROTECTED] wrote: I beat my head against this wall for quite some time. Try this: $(#myid, top.document); the top.document tells the selector to target the

[jQuery] Re: Using JQuery Effects in Parent Window from iFrame?

2008-03-27 Thread Bali
Awesome!!! Works great. Thanx tlphipps On Mar 7, 4:03 pm, tlphipps [EMAIL PROTECTED] wrote: I beat my head against this wall for quite some time. Try this: $(#myid, top.document); the top.document tells the selector to target the myid element which exists in the topmost document (your

[jQuery] Re: Using JQuery Effects in Parent Window from iFrame?

2008-03-07 Thread Chris J. Lee
you look at the frames plugin yet? http://ideamill.synaptrixgroup.com/?p=6 On Mar 6, 7:24 pm, ABecks [EMAIL PROTECTED] wrote: Hello, I have a simple HTML file with an iframe. Inside the iframe is a simple submission form. I would like to be able to click Submit and have Jquery append

[jQuery] Re: Using JQuery Effects in Parent Window from iFrame?

2008-03-07 Thread tlphipps
I beat my head against this wall for quite some time. Try this: $(#myid, top.document); the top.document tells the selector to target the myid element which exists in the topmost document (your parent page). In order for this to work, jquery must be loaded in the file which is viewed through