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 TouchToneTommy 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 Spiny

  1. Spiny

    Date Dropdown With Checker

    You get the number as an integer and put it through the following function: function zero(number) { return (number < 10) ? "0" + number : number; } However, be aware that this will return a string rather than an integer. Hope this helps, Spiny
  2. Spiny

    Resizing parts of a table... ?

    Use an array of <td>s by giving them all the same ID. This will make it much easier to isolate the one yuou want. It also stops the need to have a counter and incrementor in your php. <td id="tableCell">&nbsp;</td> The above td will be tableCell[0] <td id="tableCell">&nbsp;</td> The above td...
  3. Spiny

    A Novice question

    Personally, I'd forget CGI and use ASP. It's more like VBScript, ties in perfectly with VBScript, and is a lot less hassle in the long run. And if you can do VBScript, then you can do ASP. The only problem is finding a host. Hope this helps, Spiny
  4. Spiny

    overload functions

    Yes, you can. exactly the same way as you would in Java. Spiny
  5. Spiny

    how do i get the position of an image (top) on a web page?

    Retrieve it like this: var imgLeft=document.all.imageName.style.left; var imgTop=document.all.imageName.style.top; that's asuming they're positioned absolutely. Hope this helps, Spiny

Part and Inventory Search

Back
Top