|
|
|
| Добрый день, ниже код выводит на страницу только запрос №1, 2ой запрос он не выводит, как я понимаю происходит конфликт двух запросов, возможно создать один код, чтоб выводил два результата ?
1 запрос
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'description' ) ;
oFCKeditor.BasePath = "../../fckeditor/" ;
oFCKeditor.ReplaceTextarea() ;
}
</script>
<textarea id="description" name="description">$myrow[description]</textarea>
|
2 запрос
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'text' ) ;
oFCKeditor.BasePath = "../../fckeditor/" ;
oFCKeditor.ReplaceTextarea() ;
}
</script>
<textarea id="text" name="text">$myrow[text]</textarea>
|
| |
|
|
|
|
|
|
|
для: sandel
(15.07.2009 в 11:52)
| |
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'text' ) ;
oFCKeditor.BasePath = "../../fckeditor/" ;
oFCKeditor.ReplaceTextarea() ;
var oFCKeditor = new FCKeditor( 'description' ) ;
oFCKeditor.BasePath = "../../fckeditor/" ;
oFCKeditor.ReplaceTextarea() ;
}
</script>
|
| |
|
|
|
|
|
|
|
для: AlexSol
(15.07.2009 в 12:41)
| | спасибо, вроде элементарно, а не понял сам | |
|
|
|