Posted by Mark on 10/23/51 11:39
Hi, I am using some code to allow a person to click on a link and insert
some HTML into a WYSIWYG editor.
Basically, I have a two column table
Column 1 has a link which when clicked on gets the HTML from column 2 and
passes it to the editor.
As the application is running on IE I am using the innerHTML property and a
DIV tag to get and store the information respecitvely.
e.g.
<div id="MyHtml">
My text is here
</div>
and then I pass through the info by going
document.getElementById('MyHtml').innerHTML
This works fine, but I want a way of hiding the HTML which is to be passed
through. I tried setting the style of the div tag (visibility:hidden;) and
this does hide the tag but the table cell where the HTML remains the size of
the enclosed HTML (i.e. Really big) even though the HTML is hidden.
Any ideas more than welcome
Thanks
M
[Back to original message]
|