A
Aaron
how would i use document.write to write this input box? i can do it without
quotes but i need them for my purpose
<input type="textbox" name="input" value="something">
i did this but it doesn't have the double quotes
document.write( '<input type="textbox" name="input" ' + 'value="' +
entereddata+ '">');
2.
filter(enetereddate);
how can i filter out single quotes double quotes and other character that
might cause problem from a string? this string will be added to the value
param of the textbox.
Thanks in advance,
Aaron
quotes but i need them for my purpose
<input type="textbox" name="input" value="something">
i did this but it doesn't have the double quotes
document.write( '<input type="textbox" name="input" ' + 'value="' +
entereddata+ '">');
2.
filter(enetereddate);
how can i filter out single quotes double quotes and other character that
might cause problem from a string? this string will be added to the value
param of the textbox.
Thanks in advance,
Aaron