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 Westi 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. MattOwens

    XPath attribute wildcard

    Hi Tom, Yes, thats exactly what i was looking for, in that substr effectively can be used as a wild card. thanks a lot cheers Matt
  2. MattOwens

    XPath attribute wildcard

    Hi, Does anyone know if its possible to perform a wild carded attribute search in XPath? For example, "\\element[@attribute='wildc*']" I can't seem to get it working - the example is obvious why as its embedded in a character array. Perhaps an XPath function? Thanks in Advance Matt
  3. MattOwens

    document.all[''].style.display Mozilla incompatability

    The mnu variable is the id of the div I wish to become visible. So a call would be ShowMenu('mnuProducts'); There is no error message given, just that the div does not appear. Thanks Matt
  4. MattOwens

    document.all[''].style.display Mozilla incompatability

    Hi, I've tried the following function (as the menu being shown needs to be decided at run time, and this doesn't work as well. Can you suggest anything else to try? function ShowMenu(mnu){ document.getElementById(mnu).style.visibility='visible'; } Thanks Matt
  5. MattOwens

    document.all[''].style.display Mozilla incompatability

    Hi, I have a DHTML menu on a page which uses: document.all['mnuProducts'].style.display=''; to display the menu on mouseover an image. This does not work with Mozilla firebird, I have tried: document.getElementById 'mnuProducts'].style .visibility='visible'; which does not work either...

Part and Inventory Search

Back
Top