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 gkittelson 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. stan8450

    passing a result to a txt box deoending on drop down menus

    I am trying to pass a value of 600 into a txtbox (Approximate_fee) when sizeindex < &quot;600&quot; and typeindex==4 and ageindex==1. this is what I have so far: var typeindex=document.for[0].Inspection_Type.selectedIndex; var ageindex=document.forms[0].House_Age.selectedIndex; var...
  2. stan8450

    number validation

    I am trying to do a simple validation for a text box(House_Sqft) to ensure the user enters in only numbers. The following code I have works if the user enters all letters (ersqgadsfg) but if the user types in a combination of letters and numbers (324324nn) it will accpet it. Any ideas? var...
  3. stan8450

    passina value from a drop down list

    I would like to pass a value from a drop down list to a text box after a cmd button is pressed. Here is what I have so far: function Calculate() { if(document.orderform.Inspection_Type.selectedIndex == 3) { document.orderform.Approximate_Fee.value==&quot;295&quot;; } thanks
  4. stan8450

    Numeric Form Validation

    thanks for your help everyone
  5. stan8450

    Numeric Form Validation

    I have a number of validations in sequence for a form named 'orderform'. I would like the user to only be able to enter in a numeric value in a text box named 'house_size'. any help appreciated
  6. stan8450

    pop up window delay

    I have a pop up window and would like to put a delay on it so the pop up window doesn't load until the index page does. here is my code so far <script language=&quot;javascript&quot;> <!--...
  7. stan8450

    javascript layer problem

    I am creating a website(dreamweaver) with one main layer and tables inside of it. I have created a javascript submenu that appears in IE but not Netscape. Netscape puts the layer over top of the script and the rollovers do not appear. I REALLY need the layers so I have to find a way around this...
  8. stan8450

    Validate Numeric Value

    I am validating a form in Dreamweaver using JavaScript. I would like a user to only enter a numeric value in a text field. i.e. if (IsNumeric(document.calcform.SqFt.value) == &quot;&quot;) { alert ( &quot;Please enter in the approximate Square Footage of you...
  9. stan8450

    need and &quot;exit sub&quot; like in vbscript

    I have a number of validations in my form using javascript. While validating, I would like the validation to stop and set focus to the text box that has a false validation. Like the exit sub in vbscript. Here is what I have so far: if ( document.calcform.SqFt.value == &quot;&quot; ) { alert (...
  10. stan8450

    locating an anchor in Dreamweaver using vbscript

    On Submit of a form button, I have validated for a text box to be populated by a result from a calculator. If they have not used the calculator to populate the text box, I would like the user to be directed back to the calculator(anchor) on the page. I could just reload the page but then the...
  11. stan8450

    hide text boxes

    how do I go about doing that. I inserted the boxes in dreamweaver and there is no &quot;hide &quot;option. thanx for your quick response
  12. stan8450

    hide text boxes

    In vbscript, I want to hide text boxes on load. On the page there is 2 forms, 1 is a calculator and the other is a mail form. The claculator passes values to 4 text boxes in the mail form. I don't want the user to see the info passed to the mail text boxes, I just want info passed in the mail...
  13. stan8450

    disable text boxes

    Can someone tell me how I disable a text box named txtFee on the load of a window in vbscript. I tried .enabled = false etc any help appreciated thanx
  14. stan8450

    Open new page in existing window

    thanx, forgot the location part
  15. stan8450

    Open new page in existing window

    I would like some help in opening a new page in existing window. I am currently using window.open&quot;fsgasfgasfg&quot;. It only opens the page in a new window. any help appreciated

Part and Inventory Search

Back
Top