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 Chriss Miller 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: obiwasabi
  • Order by date
  1. obiwasabi

    Brute Force Validation

    Hi, Funny, that's exactly what I was doing as you commented :) Have a Merry, Merry obi
  2. obiwasabi

    Brute Force Validation

    Hi, In the finished code above i'm using: <form id="theForm" onSubmit = "return isReady(this)" method="post" action="http://ckimedia.com/cgi-bin/formmail.pl"/>
  3. obiwasabi

    Brute Force Validation

    Hi, No it's not working, It simply tries to load the thanks.php form, wether the fields are filled or not.
  4. obiwasabi

    Brute Force Validation

    Hi, Here is the completed code: external JS <!-- //Check for email address: look for [@] and [.] function isEmail(elm){ if(elm.value.indexOf("@")+"" != "-1" && elm.value.indexOf(".") + "" != "-1" && elm.value != "") return true; else return false; } //Check for null and for...
  5. obiwasabi

    Brute Force Validation

    Hi, Thanks I intend on calling the function as follows: <FORM NAME = "mailform" onSubmit = "return isReady(this)" ACTION = "cgi-bin/mailform.cgi"> //fields here </form>
  6. obiwasabi

    Brute Force Validation

    Hi, In the following code, how would I go about validating select menus and checkboxes. I'm aware this not a method using DOM, I'm new to JS and going old skool at the moment //start JS <!-- //Check for email address: look for [@] and [.] function isEmail(elm){ if(elm.value.indexOf("@")+"" !=...
  7. obiwasabi

    XML Newbie:Strutural Integrity

    Hi, Any taunt editors for MAC OS X? C
  8. obiwasabi

    XML Newbie:Strutural Integrity

    Hi, Thanks For The Prompt Reply So in my example file, really all of the additional information, after the name could be an attribute? C
  9. obiwasabi

    XML Newbie:Strutural Integrity

    Hi, In the following xml doc, which is meant as an exercise for XSLT Transformations, and later FLASH. I'm soliciting pointers on the well-formedness of the document. Also when one should use an attribute, instead of a new element. <?xml version="1.0" encoding="iso-8859-1"?> <employeeRecords>...

Part and Inventory Search

Back
Top