I'm writing innerHTML for a text field.
Sometime the textfield has double quotes in them.
value_=value_.r eplace(/"/g,'\\"');
var content = '<input type="text" name="'+name_+' " size="'+size_+' "
value="'+value_ +'">';
I'm not sure why that doesn't work, but it doesn't! I'm missing
something simple, somewhere.
Jeff
Sometime the textfield has double quotes in them.
value_=value_.r eplace(/"/g,'\\"');
var content = '<input type="text" name="'+name_+' " size="'+size_+' "
value="'+value_ +'">';
I'm not sure why that doesn't work, but it doesn't! I'm missing
something simple, somewhere.
Jeff
Comment