additional text to TextArea
Posted: Mon Jul 07, 2008 10:32 am
Any ideas how to add additional text to textarea tag when tag is created via CreateTextArea function? I can not find any parameter that should do that, like in other inputs :/
Content management as it is meant to be
https://forum.cmsmadesimple.org/
Yeh, but which parameter allows me to add OnClick="" stuff into TextArea? I know how to add that into text inputs or sumbit buttons, but tried all parameters for TextArea - non worked :/
Code: Select all
function CreateTextArea($enablewysiwyg, $id, $text, $name, $classname='', $htmlid='', $encoding='', $stylesheet='', $cols='80', $rows='15', $addttext='', $forcewysiwyg="", $wantedsyntax="")
{
return create_textarea($enablewysiwyg, $text, $id.$name, $classname, $htmlid, $encoding, $stylesheet, $cols, $rows, $addttext, $forcewysiwyg, $wantedsyntax);
}