I found the problem
my textarea is using javascript to format it as a wyswyg
Code:
<script language="javascript1.2">
var config = new Object(); // create new config object
config.width = "500px";
config.height = "200px";
config.bodyStyle = 'background-color: white; font-family: "Verdana"; font-size: x-small;';
config.debug = 0;
config.toolbar = [
['bold','italic','underline','strikethrough','subscript','superscript','justifyleft','justifycenter','justifyright','OrderedList','UnOrderedList','Outdent','Indent'],
];
editor_generate('emailbody',config);
</script>
anyway to get this to work together with my javascript allowing me to change the text? or can I get this javascript to pull into it the text from the div emailbodyt ?
Bookmarks