I am working with a third party site. I want to refer all my members to this site, where they signup and get a javascript specific to them.
I then want them to be able to paste this script on their profile page.
If I create a hmltextarea for the script, they can't paste it as the html text area is a wysiwyg editor with no ability to view source, so the script is converted to html and the html for the script is displayed instead of the script being run.
If I create a plain textarea, the user pastes in the script, and because it is displayed as plaintext, the code of the script is displayed instead of being run.
What I need is to be able to collect the script in plain text, and then display as html. Is this possible? Any suggestions how to accomplish my goal?