[jQuery] Re: accessing iframe content

2009-07-26 Thread helpfulMike
Hi, I had a similar problem a couple of days ago and this worked for me... iframe = $('iframe.CLASS_NAME')[0]; hope it helps, Mike On Jul 26, 2:39 am, kknaru isai...@gmail.com wrote: hi there, i just started working with iframes and i'm stucked :D so...i have this code

[jQuery] Re: accessing iframe content

2009-07-26 Thread helpfulMike
Hi, Try this. It works for me. iframe = $('iframe.CLASS_NAME')[0]; I am accessing iframe content via class and works fine. Should work with id too. Hope its what you need, regards Mike

[jQuery] Re: Rich Text Editor plugin

2009-07-26 Thread helpfulMike
Hi Daniel, Not sure if this is what you need, but I used.. I needed a very light editor, so used the one by Batiste Bieler http://batiste.dosimple.ch/blog/2007-09-11-1/ It loads a rte via iframe. Then I accessed as follows iframe = $('iframe.rte-zone')[0];