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 bkrike 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 IanDunn

  1. IanDunn

    saving space

    Try this <script> function togglePara(paraName) { var para=document.getElementById(paraName) if (para.style.display==&quot;none&quot;) { para.style.display=&quot;&quot; } else { para.style.display=&quot;none&quot; } } </script> <body> <span id=&quot;title1&quot...
  2. IanDunn

    Validation

    You could just split the input value at the &quot;.&quot;, and take the first part of the returned array as the dollar amount example of use given: <script language=javascript> var amount=&quot;5.00&quot; splits=amount.split(&quot;.&quot;) var dollars=splits[0] document.write(dollars)...
  3. IanDunn

    fade out to work in NS6

    I think that your problem is that NN6 recognises document.all, not document.layers, but the IE part of the program uses posLeft and posTop - which NN doesn't accept (I think). You could change the .posLeft=xPos to .left=xPos+&quot;px&quot; which is a more generic form Ian
  4. IanDunn

    Toggle Menu not working in Netscape 4.78 or 6

    I've noticed that Netscape doesn't appear to like some of the IE display modes - if your summary is in a table cell, try display=&quot;table-cell&quot; instead (IE 5 doesn't support this though!)

Part and Inventory Search

Back
Top