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!

Search results for query: *

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

    style.display problem when traversing the DOM

    For my print script I need to expand some tables which are not visible (style.display = 'none'). When I go through my site using this script: var allTables = document.body.getElementsByTagName("TABLE"); for (i=0; i < allTables.length; i++) { if (allTables[i].style.display == 'none') {...
  2. rvandenb

    AIX which proces uses which tcp port

    Using "lsof -i" you can see which processes uses a tcp port. This helped me out when starting a proces and got the error 'port already in use'... RB

Part and Inventory Search

Back
Top