I am using jQuery, and I get the contents of a TextArea as follows:
// get the SQL from the text area at the top:
//sql = $("#sql").val();
//sql = $("#sql").text();
sql = $("#sql").attr("value");
<textarea id="sql" rows="9" cols="99"></textarea>
This works fine in all browsers except IE
I have tried several ways, but nothing works in IE
It gives me the message: "Object doesn't support this property or method". There must be a simple way to do this that works in all browsers, right?