Get The Value Of An Asp Textbox Element With An Htmleditorextendor Attached, Using Javascript
I am having an odd issue. I have a textbox with an ajaxToolkit HtmlEditorExtender attached to it. I need to get the text that is put in this textbox using javascript. I have a simp
Solution 1:
".Value" and ".Text" are ASP.NET control properties, not Javascript element properties. You need to use ".value".
Post a Comment for "Get The Value Of An Asp Textbox Element With An Htmleditorextendor Attached, Using Javascript"