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 bkrike 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: milams
  • Content: Threads
  • Order by date
  1. milams

    Trouble with a function

    Hi, I wrote this function and the function works as long as I pass along the input fields that it needs to run the function. I've been looking at function examples and I see a lot of using "this" in the function argument. I try to do this and it never works. It always says that "Object...
  2. milams

    Trouble with a function

    Hi, I'm a newbie when it comes to JavaScript. I'm trying to write a script where I have some hidden fields from a form. These fields are shipping prices. What I want to do is in the field item_quantity_1, when a new number is input in there I have an onchange command. That command triggers...
  3. milams

    Trouble displaying results

    Hi everyone, I am some what new to JavaScript and I'm having a problem displaying my results from a function. The function is working, but the problem is that I have a form with a dropdown list that is a quantity field. What I would like it to do is when the user selects a number in the...
  4. milams

    Passing form data to a function

    Hi All, I'm not that this can be done in JavaScript, but what I'm trying to do is have a dropdown list with numbers in the list representing a quantity. I put an "onchange" on the dropdown list: <script language="javascript"> var qty = document.testform.element.qty.value; function testfor(){...
  5. milams

    Form Margins

    I'm kind of new to CSS. Is there a way to get rid of the margins that are in forms?
  6. milams

    Trouble creating tables

    Hi, I'm trying to write a PHP script to create a MySQL table. When I try to run the script, it won't create the table. I noticed that it will create it if I don't put "auto_increment" or "Primary key" in the script. If I take those two things it works great, but when I try to put that in, it...
  7. milams

    A Simple question

    I have a href link where I want to open a pop up window when someone clicks on the link. Ive tried it this way, but the parent page would change and say [NULL]. <div class="abs"> <a class="emaillink"...
  8. milams

    Auto-populate a field from another field

    Hi all, I was wondering if anybody would know where I could find some examples of JavaScript code for auto-populating a text area field when an item from a drop down list is selected. I want to be able to take information that is selected from the drop down list and automatically put it in a...
  9. milams

    Simple MySQL Question

    Hi All, I have an "INSET INTO" question. When I want to insert data from a form into my database, do I have to list all of the columns that are in the database? And do they have to be in order, the way that they are listed in the database.
  10. milams

    Variable in Javascript

    This is driving me up the wall here! I have this form where based on if a checkbox is selected the action file on the form will change. First can this be done and how do I write a javascript variable to change in the action="change variable" of the form properties? Say by default, the action...
  11. milams

    Help understanding JavaScript Errors.

    Hi, I am running a script on CSS Menu and in Netscape and Internet Explorer it's coming up with an error saying "objDropMenu has no properties" line 23(objDropMenu.style.visibility = 'hidden';). Can someone tell me what that means? I can't seem to see the Syntax error, but there is one right...
  12. milams

    opening a window that is already open

    Hi, I've been trying to figure this out. I have a form with a PayPal "add to cart" button. When you select "Add to Cart" another window will open directing it to the PayPal page. That works fine, you go to check out and you have the option of checking out or continue shopping. If you select...
  13. milams

    need help with NULL Object

    I know this is probably a simple question, but what does it mean when the error says for example "'document.issuerma.awp_date'is null or not an object
  14. milams

    passing variables

    Is there a way to pass a PHP variable within a javascript script?
  15. milams

    Automatic resize of a popup window

    Is there a way to automatically size a popup window based on the the size of the table? I am querying the table dimesions using PHP and MySQL and I would like to insert the two variables $alt_height and $alt_width into the javascript code below by putting those two variables in place the pixel...
  16. milams

    info from a pop up to main page

    I was wondering if anybody would be able to help me on this? Is there a way that you can take information from a pop up window(ie. A Hyperlink) and have it poulate a field in a form on the page where the pop up window came from. I hope that makes sense.
  17. milams

    javascript wit &lt;body onload&gt;

    Hi, I'm trying to get an alert box to come up when the page is loaded. below is the code I am using. <body onload="javascript:window.alert('This is a Test')"> Is this correct? if not, can somebody tell what I did wrong? Milams

Part and Inventory Search

Back
Top