Comment 8 for bug 1422802

Revision history for this message
Dan Wells (dbw2) wrote :

I think document.forms doesn't do what you expect here for a single element (its just the input instead of a list). Maybe replace:

document.forms["PlaceHold"]["part"]

with:

document.getElementsByName("part")

instead?