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: planeboy747
  • Order by date
  1. planeboy747

    did i do this right, concactanate two values?

    it worked, thanks!
  2. planeboy747

    did i do this right, concactanate two values?

    got it fixed, but still not working...
  3. 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...
  4. planeboy747

    document.write

    cLFlaVA, do you know how awesome you are?!?!?! It worked, thanks! :) Jacob
  5. planeboy747

    document.write

    That section of the form doesn't even show until you click the button in this section of the code: <td align="right"><a href="#confirm"><img src="/images/buttons/continue.gif" value="click" alt="Continue" width="83" height="17" border="0" onclick="reviewConfirm();doConfirm();"></a></td> I...
  6. planeboy747

    document.write

    you know what, you're right, that will only work on an onload... okay, here it is, all my code... <Script Language=JavaScript> //////////////////////////////// // remove terms and add form // ////////////////////////////// function authorize() { var elem = document.getElementById("second")...
  7. planeboy747

    document.write

    The code is long, so let me see if you have any ideas from this, if not, i'll paste all the code function doConfirm() { document.getElementById("confirmation1").innerHTML=document.getElementById("agency").value; } in this table cell: <td width="402" height="20" id="confirmation1"> </td>...
  8. planeboy747

    document.write

    the onClick in my form open and close <div> tags where I'm hiding other areas of the form. On this particular onclick, the form becomes hidden, and then it's displaying basically a confirmation section with all the form field values (or at least that's what I'm trying to do, but it's not...
  9. planeboy747

    document.write

    It's still not working... function doConfirm() { return document.getElementById("agency").value; } ---------------------------------------------------- <input name="agency" type="text" id="agency" tabindex="1" value="" size="25"> ----------------------------------------------------...
  10. planeboy747

    document.write

    okay, I had to try something different, that didn't work, but I got real close with my solution, and a little stuck. This script is returning the word "agencyValue" when I meant for it to return the value of the field "agency"? I'm using script: --------------------- function doConfirm() { var...
  11. 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...
  12. planeboy747

    onClick not working to populate other form value

    the reviewConfirm function is just a function to hide areas of content on the page, which are hidden between div tags, do you still need the code, it's quite long the entire form? My form is working right with that function, it's just the doConfirm function I can't get to work right.
  13. 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-----...
  14. 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"...
  15. 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 =...
  16. 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...
  17. planeboy747

    concatanate 2 fields to form a label

    hey, got it to work! thanks for help
  18. planeboy747

    concatanate 2 fields to form a label

    this is awesome thanks, however I've got one issue. My lname1 and fname1 fields are created by another script, because those fields are based on another element in the form...i tried to plug in the onchange item, but it didnt work, any ideas? here's the script i have to create the lname and...
  19. 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...
  20. 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 =...

Part and Inventory Search

Back
Top