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 gkittelson 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: expertnovice
  • Order by date
  1. expertnovice

    onSubmit, show/hide

    forgot to add on more to that: function onSubmit() { if((document.getElementById('submitButton').style.visibility != 'visible') && (document.getElementById('progressBar').style.visibility != 'hidden')) { document.getElementById('submitButton').style.visibility = 'visible'...
  2. expertnovice

    onSubmit, show/hide

    also, I think you can do a conditional test beforehand. (once again I am not a Javascript expert) if((document.getElementById('submitButton').style.visibility != 'visible') && (document.getElementById('progressBar').style.visibility != 'hidden')) {...
  3. expertnovice

    onSubmit, show/hide

    I'm not an expert on Javascript, but maybe you can try this instead: document.getElementById('submitButton').style.visibility = 'visible'; document.getElementById('progressBar').style.visibility = 'hidden';

Part and Inventory Search

Back
Top