Posted by the DtTvB on 06/14/06 14:48
db wrote:
> and in the javascript part, firstly i get the div with using
> var content =
> document.getElementById('dynamiccontent');
>
> and then generate form, after that i use
> content.appendChild(inputform)
>
> Is that right?
>
> db
What I meaning was:
var content = document.getElementById('dynamiccontent');
content.innerHTML = ''
+ '<form action="..." method="post" enctype="multipart/form-data">'
+ '<input ..../> or some stuff like that.'
+ '</form>';
[Back to original message]
|