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 Mike Lewis 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. HarmonicaMan

    toString?

    var page = 'main'; var sect = 'page'; document.write('<B>'+window[sect]+'</B>');
  2. HarmonicaMan

    toString?

    Is the code called from a function, or from the global(window) level? Show the scenario in which it's called
  3. HarmonicaMan

    display='block' netscape and mozzila nightmare

    instaed of display='block';//which causes the element to bahave like a block use the more correct: display='';//causes the default for the element or even: display='table-row';// for table-rows!
  4. HarmonicaMan

    onclick in appletts

    The answer here is simply NO.
  5. HarmonicaMan

    onclick in appletts

    Lets focus here on the problem. Forget you PHP codings for now. The question is whether you can attach(through parameter) a URL that some button in the applet will send to. By writing code in your applet yes! But can/did you write the applet code? Explain what your applet is - is it a button...
  6. HarmonicaMan

    innerHTML won't display

    The point is that you have called the script before the element has even loaded on the page! So do it in a function which can be called onevent(like onload): <script language=&quot;JavaScript&quot;> function change() { document.all.portfolio.innerHTML = &quot;hooray&quot;; } </script> </head>...

Part and Inventory Search

Back
Top