Hi All,
I need to remove vertical and horizontal scroll bar from HTMLEditorExtender.
I tried below Code,
But Its not working.
Please Help .
<script type="text/javascript" defer="defer">
$(function () {
setInterval(function () {
if ($find("HTMLEditorExtender1")) {
var TEXTAREA = $find("HTMLEditorExtender1").get_editPanel().get_element().getElementsByTagName('TEXTAREA')[0];
$(TEXTAREA).height($(TEXTAREA.contentWindow.window.document.body).outerHeight())
}
}, 100);
})
</script>
Regards,
Jayesh(From India,Mumbai)