Print Page | Close Window

Using javascript to access form value

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Rich Text Editor (RTE)
Forum Description: Support forum for the Web Wiz Rich Text Editor (RTE).
URL: https://forums.webwiz.net/forum_posts.asp?TID=29857
Printed Date: 28 March 2026 at 5:51am
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Using javascript to access form value
Posted By: adamwsh
Subject: Using javascript to access form value
Date Posted: 11 October 2011 at 3:27pm
Below is my code to use the WebWizRTE control on my page.
I want to be access the contents of the control via Javascript.  When I do this, all I see is the contents of my original html textbox, not what is in the WebWiz control.

How can I use javascript to access the contents of the WebWiz control? 
How can I make sure I'm getting the user entered content in either the HTML control (if the WebWiz control didn't load for them) or the WebWiz control (if it did load for them)?



<%
'Declare the ASP variables used
Dim strFormName
Dim strTextAreaName

'ID tag name of the HTML form the textarea is within
strFormName = "frmMessage"

'ID tag name of HTML textarea being replaced
strTextAreaName = "txtMessage"
%> 
<!--#include file="RTE_editor_inc.asp" -->
<form id="frmMessage" name="frmMessage" language="JavaScript" >
<textarea rows="10" name="txtMessage" id="txtMessage" cols="100">this is not working yet. Don't type anything here.</textarea>
</form>
<input type="button" id="btnSendReply" name="btnSendReply" value="Send Reply" onclick="PostReply()">


function PostReply()
{
alert(document.getElementById("txtMessage").value);
}




Replies:
Posted By: WebWiz-Bruce
Date Posted: 11 October 2011 at 3:37pm
Your text area is replaced with an editable IFrame. To get the contents of the IFrame you need to use:-

document.getElementById('WebWizRTE').contentWindow.document.body.innerHTML


-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net