in reply to implementing TinyMCE in a perl script

One obvious difference I see is that the HTML version loads http://tikvatisrael.org/js/tiny_mce/themes/advanced/link.htm in the popup, while the perl version loads http://www.tikvatisrael.org/js/tiny_mce/themes/advanced/link.htm. (note the leading www)

Update: And to confirm that this is indeed the problem, load the perl version by going to http://www.tikvatisrael.org/cgi-bin/tinymcefull.pl instead of the www-less version and you'll see that everything works now.

I'm guessing it's some cross-domain protection code kicking in.

Replies are listed 'Best First'.
Re^2: implementing TinyMCE in a perl script
by jck (Scribe) on Aug 02, 2009 at 01:07 UTC
    thanks so much! that was it. the perl had absolute paths for the js src urls, and the html had relative paths...changing the perl to match the html did the trick. i didn't even notice that i'd typed in www.tikvatisrael.org...etc in (odd, since i don't normally do that with our root path - usually it's without the "www")

    anyway, thanks for the fresh eyes on the problem!!