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!

Search results for query: *

  • Users: planeboy747
  • Content: Threads
  • Order by date
  1. planeboy747

    did i do this right, concactanate two values?

    Take a look at the line with "confirmation11" - I don't think I concactanated lname1 and fname1 correctly? function doConfirm() { document.getElementById("confirmation1").innerHTML=document.getElementById("agency").value...
  2. planeboy747

    document.write

    I can't get this document write code to work? I think it's scripted wrong. I want to document.write the value of the "agency" field in a table cell of the "request" form. <script>document.writeIn(document.forms.["request"].elements.["agency"].value)</script> This script is being executed in a...
  3. planeboy747

    onClick not working to populate other form value

    My function "doConfirm" is not displaying the results of field id "agency" into field id "confirmation1". I'm using a onClick function to populate, but it's not working, below is all my code, any ideas? I'm thinking, do I need to call a document.write or something?? Thanks -----Script-----...
  4. planeboy747

    Add ID tag to function

    In this function, I need to add another ID tag (id="third), but it's not working. Any thoughts? I think I have it scripted wrong... function authorize() { var elem = document.getElementById("second")("third"); elem.style.display = "block"...
  5. planeboy747

    Put 2 field values together

    I'm trying to have the last name and first name (lname1 and fname1) value fields concataneted in a form confirmation page with a comma, so it appears (Doe, John), here is my code: function doConfirm() { var f = document.forms['request']; f.elements['confirmation1'].value =...
  6. planeboy747

    onClick function perhaps?

    I have 3 fields. Here are their id's "name" "date" "time" When a button is clicked, I need the value of those 3 fields to be populated into these field id's. "confirmation1" <--for the "name" field "confirmation2" <--for the "date" field "confirmation3" <--for the "time" field How do I...
  7. planeboy747

    concatanate 2 fields to form a label

    I have 2 fields in my form, id= "lname1" and "fname1". The first field is last name and the other is first name. I would like for the function to concatanate the 2 fields to form one string, like Last Name, First Name (Doe, John E.). The comma needs to be included when concatanated as well as...
  8. planeboy747

    onChange call 2 functions?

    Is it possible for an onChange to call 2 functions at the same time? Here's my onChange: -------------------- <select name="select" onchange="adjustRows(this.value,nameSet)"> Here's my code for this script: -------------------------------- function insertRows(isTable){ index =...
  9. planeboy747

    select field populates table?

    in this form www.jetclik.com/form.html how can I get the select field in the beginning of the form (id="nameSet") to populate the appropriate number of order number fields (id="onTable") based on the number selected in id="nameset"? example, if 4 is selected in "nameSet" then there should be...
  10. planeboy747

    onLoad not working?

    My onLoad function is not working in my form (onLoad="getRandom()") I'm using it to call a function to create a random number and then populate it into a text field. Perhaps I'm doing something wrong. To view the form go to: http://www.jetclik.com/form.html Here is the html and script if you...
  11. planeboy747

    hide &lt;div&gt; onClick?

    To see the form I'm working on, go to: http://www.jetclik.com/form.html You'll notice when the page loads there are Acceptance Terms section and an button (agree). When you click on the button, the script unhides what's behind, div id="second", which actually loads the form. Here's the...
  12. planeboy747

    creating random numbers within form

    I have a form that I'm working on, which you can view at: http://www.jetclik.com/form.html I have only a part of this form functional with the JavaScript I already have. At the top of the form there is a place to enter the number of customers. Once you select that number, it autopopulates the...
  13. planeboy747

    autopopulate form with javascript

    I have a select field with a drop down menu where you can select the number 1 through 9. Basically this field is used to determne the number of names that will be entered into the form. Example, if you select 5, then the form will need to have places for you to enter those names. So here's my...

Part and Inventory Search

Back
Top