I have a page with a TinyMCE textarea for taking some input. When a user types in a content like
#WorldCupRio http://www.ball.com/us/experience?story=hello&city=panama
and i do a
jTextarea.tinymce().getContent()
on it, i get a content like
#WorldCupRio http://www.ball.com/us/experience?story=hello&city=panama
the & is encoded to
&
How can i avoid this encoding with & or any other special character? Pls help.