<script type="text/javascript">
<!--
var sBasePath = '/AT/editor/';
oFCKeditor = new FCKeditor( 'body4' ) ;
oFCKeditor.Height = 100 ;
oFCKeditor.Config['ToolbarStartExpanded'] = false ;
oFCKeditor.BasePath = sBasePath ;
oFCKeditor.Value = 'Ginger Court<br /> 1st floor<br /> hi tech city. madhapur.' ;
oFCKeditor.Create() ;
//-->
I am creating the FCK instance using the above command. Its creating the editor with the content
"Ginger Court<br /> 1st floor<br /> hi tech city. madhapur."
what I expect is
"
Ginger Court
1st floor
hi tech city. madhapur.
"
could you please assist me to make this?
I really appreciate your help.
Thank You.
<!--
var sBasePath = '/AT/editor/';
oFCKeditor = new FCKeditor( 'body4' ) ;
oFCKeditor.Height = 100 ;
oFCKeditor.Config['ToolbarStartExpanded'] = false ;
oFCKeditor.BasePath = sBasePath ;
oFCKeditor.Value = 'Ginger Court<br /> 1st floor<br /> hi tech city. madhapur.' ;
oFCKeditor.Create() ;
//-->
I am creating the FCK instance using the above command. Its creating the editor with the content
"Ginger Court<br /> 1st floor<br /> hi tech city. madhapur."
what I expect is
"
Ginger Court
1st floor
hi tech city. madhapur.
"
could you please assist me to make this?
I really appreciate your help.
Thank You.
RE: Replace function FCK editor
oFCKeditor.Value = 'Ginger Court<br /> 1st floor<br /> hi tech city. madhapur.';
It might be better to use one of the server integration as they take care of the proper javascript rules that you must follow.