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 Mike Lewis 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. Pimonkey

    "bigarray[...] is null or not an object"

    Through heavy editing and blind guesses I have got it to work. The problem had to do with the top array, which had problems being undefined.
  2. Pimonkey

    form validation

    That's: var checkedpos=-1; for (var i=0; i < 3; i++) { if (document.form1.choice[i].checked) { checkedpos = i; break; } } if (checkedpos == -1) alert(&quot;Please check a thingy&quot;); Sorry, I hate this TGML stuff...its very bad for program code, especially when I like to use &quot;i&quot...
  3. Pimonkey

    form validation

    Do a for loop: var checkedpos=-1; for (var i=0; i < 3; i++) { if (document.form1.choice[i].checked) { checkedpos = i; break; } } if (checkedpos == -1) alert(&quot;Please check a thingy&quot;);
  4. Pimonkey

    &quot;bigarray[...] is null or not an object&quot;

    I have tried it and yes it does display the correct value.
  5. Pimonkey

    &quot;bigarray[...] is null or not an object&quot;

    Sorry about the strange variable names...
  6. Pimonkey

    &quot;bigarray[...] is null or not an object&quot;

    Okay, I am really having problems with this. The subject is the error I get when running the following function. I have found that it actually does recognize &quot;bigarray[parseInt(tope[ i ])].split(',')[0]&quot;, because I have document.writen it. The problem seems to be += the string...

Part and Inventory Search

Back
Top