Posted by Charly on 13:22:00 04-30-2001
does anybody know how to put the value of a textbox (of an html-form) in an array and cut the last character?
Thanx Charly
Posted by fabs on 13:43:00 05-08-2001
Try using chop on textbox.value.
fabs
Posted by happyhacker14 on 17:27:00 05-31-2001
my code may be wrong, but it looks simular to this:
var textbox = document.form.textbox.value;
document.form.textbox.value =
textbox.substring(1, (textbox.length -1))
if you're not sure go to www.w3schools.com