I have a FCKEditor that is basically editing HTML that is part of a Velocity (Java technology) template. My problem is that some of my hrefs are $someObject.someMethod("param1", "param2") via some customization I wrote for the "Browse Server" functionality.
My problem is that when I get the HTML from the editor is as encoded such that:
<a href="$someObject.someMethod(param1, param2)"
is
<a href="$someObject.someMethod%28param1,%20param2%29"
How can I get the value that has not been URL Encoded?
Thanks so much,
Frank
My problem is that when I get the HTML from the editor is as encoded such that:
<a href="$someObject.someMethod(param1, param2)"
is
<a href="$someObject.someMethod%28param1,%20param2%29"
How can I get the value that has not been URL Encoded?
Thanks so much,
Frank
RE: Need unencoded HTML
RE: Need unencoded HTML
FCK.GetXHTML(true)
FCK.GetXHTML(false)
FCK.EditorDocument.body.innerHTML
RE: Need unencoded HTML
Hi,
Yes the API is (a little) documented here :
http://wiki.fckeditor.net/
Y.Chaouche