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 Wanet Telecoms Ltd 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: *

  • Users: countryboy
  • Content: Threads
  • Order by date
  1. countryboy

    JavaScript equivalent of VBScript "chr(n)"

    Hello all! I'm trying to delimit a text string with a non-printable character such as VBScript chr(5). How could I accomplish this in JavaScript? TIA.
  2. countryboy

    javascript equivalent of vbscript chr(n)

    Hello all! I'm trying to delimit a text string with a non-printable character such as VBScript chr(5). How could I accomplish this in JavaScript? TIA.
  3. countryboy

    How to add options to select box on the fly

    The following JScript adds an array of options to a select box (provided the select box is not in a form): <code>for (u=0; u<Count+1; u++) if (u==0) { var oOption=document.createElement(&quot;OPTION&quot;); oSelect.options.add(oOption); oOption.innerText = (tempArray[u]); oOption.value =...

Part and Inventory Search

Back
Top