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 Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mdude85

  1. mdude85

    Source script within a source script?

    Is it possible to call a source script using <script src = "myscript.js"> and inside myscript.js, another source is being called? i.e. myscript.js contains: <script src = "myscript2.js"> Thanks
  2. mdude85

    Question about WHILE/FOR Loops

    Oops, nevermind, I think I fixed it. I removed the i++ right after my document.write in the for loop that I had included from another test code. I appreciate your help!
  3. mdude85

    Question about WHILE/FOR Loops

    Thanks, the .length value is a really big help. However, when I run my script, the value corresponding to myArray[0] is left off (only the values in [1] and [2] are printed). If I start i = 0, shouldn't the [0] value be printed? Thanks.
  4. mdude85

    Question about WHILE/FOR Loops

    Say I am writing a code like so: Var[0] = 0 Var[1] = 1 Var[2] = 2 And I want to output the variables with a while loop so that they are output in a document.write(Var+'<br>') but that they stop outputting depending on the number in the Var[] brackets IF the number is NOT static -- that is the...

Part and Inventory Search

Back
Top