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 Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jetclik

  1. jetclik

    form field mask

    How do I create a form field mask for a date field? mm/dd/yy The form field needs to have mm/dd/yy already populated in it, so the user just enters the numbers and it fills out the mask... any ideas how to put together? thanks
  2. jetclik

    links that add sections to forms

    i've gotten the add and remove rows section put together, however, i'm still stuck on the for loop...i need this function to disallow the creation of no more than 9 rows, any ideas? <html> <head> <script language="JavaScript" type="text/JavaScript"> var numRow = 0; var nwRowId = ''; var tdArray...
  3. jetclik

    links that add sections to forms

    i tried this and it worked! however, one row has to always be constant, so the possibility exists that if someone adds a row by accident, they may need to remove it, and i haven't figured out how to add a remove link yet, any thoughts here would be great <html> <head> <script...
  4. jetclik

    links that add sections to forms

    well i tried to make this script so that it would add rows to my table, but have no luck, and not sure where i went wrong... <html> <head> <script type="text/javascript"> function insRow() { var x=document.getElementById('myTable').insertRow(3) var w=x.insertCell(0) var y=x.insertCell(1) var...
  5. jetclik

    links that add sections to forms

    Some forms have links on them where you click them and they add sections to the form. I'd like to do something similar with my form. I'd like for someone to be able to click on the "Add name" link and have it at a row of the same information, however, there can only be a maximum of 9 rows...

Part and Inventory Search

Back
Top