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 strongm 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. magiccity

    Date Validation...

    I would change the submit button to a standard button and use the onClick event to edit your date field...upon a valid date use document.formname.submit(). You would need to edit the script so it returns a string that indicates the field is valid. For example: <input type=&quot;button&quot...
  2. magiccity

    Date Validation...

    This function will edit dates in the format MM/DD/CCYY or MMDDCCYY and returns in the format MM/DD/CCYY. You need only pass the text field object and text field value. It will validate characters, months and number of days in a month. If the entry is invalid it returns focus to that field...
  3. magiccity

    SelectSingleNode &amp; return node index from DOM Document

    My apologies...I was trying to keep it simple. I believe you have already answered my question but I will elaborate in case anyone has any further ideas. I have code that loads up an interface file from the client and converts it to XML. I have developed a web-based front end to act as a...
  4. magiccity

    Change(this) in input field =&gt; get properties from 'this' in script

    You could put the html in a span or div and use .innerHTML to change the class. For example: function Change(){ form.document.all('dynamTD').innerHTML = '<td class=&quot;tdnewclass&quot;>' + .....; } </script> <span id=&quot;dynamTD&quot;> <td class=&quot;tdclass&quot;> <input...
  5. magiccity

    Good JS site: Internet Related Technologies

    I have no affiliation with the following site except for often referring to it for JavaScript code to use in a job related site. It has rarely let me down. The only negative is the recurring pop up ad it contains. http://irt.org
  6. magiccity

    SelectSingleNode &amp; return node index from DOM Document

    Can anyone tell me how to get the index of the node returned by the SelectSingleNode method?

Part and Inventory Search

Back
Top