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 SkipVought 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. ThomasE

    Validation Problem

    Oh just one quick question.......can you tell me what the code would be if I want to validate an option box using the method above?? Thanks
  2. ThomasE

    Validation Problem

    Hey thanks Dookie2k2, I tried your code and the only thing I had to change was to place the 'document.Sales.user_name.focus();' under the 'return false;' line............now when I close the alert box the cursor is focused back onto the field that is not correctly filled in. Thanks again
  3. ThomasE

    Validation Problem

    I am using the validation script below as part of a larger script for a sales form. At the bottom of the sales page I have a button that runs a function to open a printable page. I need to validate the form fields on the form before proceeding to the printable page. If I leave one of the fields...
  4. ThomasE

    getElementById error

    Hey found the problem after much searching........ The enclosing brackets ( should be [ document.getElementById("Title").options[document.getElementById("Title").selectedIndex].text works fine now
  5. ThomasE

    getElementById error

    Can someone please help me with this problem, it is very urgent.......thank you
  6. ThomasE

    getElementById error

    I am trying to write a value into another page with the section of code below but I am getting an error in the Netscape 7 javascript console saying ' Error: document.getElementById(&quot;Title&quot;) has no properties It works ok in IE6 but not NS7 list += &quot;<table width='100%'...
  7. ThomasE

    Shopping Cart

    Hi there, I have found a great ASP shopping cart with heaps of features and not difficult to set up Check out www.comersus.com The software is Open Source....Free Distribution
  8. ThomasE

    Checkbox Value Problem

    palbano........is that HTML or is it the javascript code that I need to add into the script?? and do I need to add it into the lines of code that refer to the other text fields etc as shown below. list += &quot;<html><body><font color='#ff9900' face='Verdana, Arial, Helvetica'...
  9. ThomasE

    Checkbox Value Problem

    Hey thanks Raxg, If I use radio buttons do I need to use a list like below except with radio buttons or does it write the value like a text field or option box does? list += &quot;</table>&quot;; var nametitle = &quot;&quot;; if(document.all.MR.checked) { nametitle = &quot;Mr.&quot;; }...
  10. ThomasE

    Checkbox Value Problem

    Can anyone please help with this problem as it is really urgent.......Thank You
  11. ThomasE

    Checkbox Value Problem

    Thanks Targol, list += &quot;</table>&quot;; var nametitle = &quot;&quot;; if(document.getElementById(&quot;MR&quot;) { nametitle = &quot;Mr.&quot;; } if(document.getElementById(&quot;MISS&quot;) { nametitle &quot;Miss.&quot;; } if(document.getElementById(&quot;MRS&quot;) { nametitle...
  12. ThomasE

    Checkbox Value Problem

    I am trying to write the checkbox value into another popup window but it does not work in Netscape 7. I get an error in the javascript console saying.... ' document.all has no properties '. Below is an example of the section of code I am using. list += &quot;</table>&quot;; var nametitle =...

Part and Inventory Search

Back
Top