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 derfloh 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: tachyon80
  • Content: Threads
  • Order by date
  1. tachyon80

    regular expressions challenge!

    I'm trying to build a regular expression for Canadian postal codes for javascript but I'm not really up to the task. Can anyone here do it? I needs to be: letter (upper case only) number letter (upper case only) no space OR space OR dash number letter (upper case only) number And then no more...
  2. tachyon80

    Simple regular expression question

    I'm having a problem making the regular expression for U.S. zip code verification work. the regular expression: /(^\d{5}$)|(^\d{5}-\d{4}$)/ My code is below. No matter what I type in, it asks me to correct my zip code. Any suggestions? <html> <head> <title>U.S. Address</title> <script...
  3. tachyon80

    &quot;undefined&quot; error

    address: <input type="text" onblur="updateParent1(this); updateParent5('USA')"> I try this line of code in a field on my popup window but it drops "undefined" into the country field on the parent page. Any way to fix this?
  4. tachyon80

    problem popup window

    I've got a great popup window for my form but it can't handle a hidden value. What do I change in the code below to make my hidden country field appear on the main window? <html> <head> <title>U.S. Address</title> <script language="Javascript" type="text/javascript"> <!-- hide script from old...
  5. tachyon80

    popup window - text goes to main window on submit

    I've seen scripts like this before but I can't find any now that I go looking for it. A popup window lets you type text in. When you hit the popup window's Submit button, its entered text goes to specific fields on the main page/window. Anyone have a script like that laying around? Thanks!
  6. tachyon80

    radio button for display content

    I found this script to change an image based on the radio button selected: <FORM action="" method=post> <TABLE cellSpacing=0 cellPadding=0 width=429 border=0> <TBODY> <TR> <TD><INPUT onclick="document.images['rx-78-2'].src=(this.value)" type=radio CHECKED value=a.jpg name=rx-78-2> </TD>...

Part and Inventory Search

Back
Top