Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JoelCohen

    Can't set focus to new text box after using table.appendChild()

    The error is a simple one that I make all the time. The focus method needs the parentheses after it. so your line: document.getElementById("txtItemQty"+ itemCount).focus; should read (see parentheses at the end of the line): document.getElementById("txtItemQty"+ itemCount).focus(); But be...

Part and Inventory Search

Back
Top