Main navigation
Product navigation
Main content
CKEditor 4
Overview
Demo
Accessibility Checker
Add-ons
Documentation
Download
Pricing
More
Home
WYSIWYG Editors
CKEditor 4
CKEditor 5
Image upload
CKFinder
Easy Image
Collaboration
Comments
New
Track changes
New
Collaborative editing
Pricing
Case studies
New
Documentation
Help center
Blog
Contact us
The forum operates in
read-only
mode. Please head to
StackOverflow
for support.
Forums
CKEditor
Support
Last post
Thu, 03/03/2005 - 09:30
#1
capfut
Joined:
01/03/2005
Posts:
5
ReplaceTextarea() - id or name
http://[..]/FCKeditor/editor/js/fckeditorcode_gecko_1.js
Tue, 03/01/2005 - 13:40
#2
capfut
Joined:
01/03/2005
Posts:
5
RE: ReplaceTextarea() - id or name
It seems to work if you exchange line 75 in fckeditor.js
var oTextarea = document.getElementsByName( this.InstanceName )[0];
by
var oTextarea = document.getElementById( this.InstanceName ) ;
Does this could have any side effect?
Thu, 03/03/2005 - 09:30
#3
capfut
Joined:
01/03/2005
Posts:
5
RE: ReplaceTextarea() - id or name
Twitter
Facebook
Facebook
Instagram
Medium
Linkedin
GitHub
Arrow down
Phone
Menu
Close icon
Check
RE: ReplaceTextarea() - id or name
var oTextarea = document.getElementsByName( this.InstanceName )[0];
by
var oTextarea = document.getElementById( this.InstanceName ) ;
Does this could have any side effect?
RE: ReplaceTextarea() - id or name