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 IamaSherpa 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. jmorris

    writing for forms 'value'.

    I am trying to write to a forms value, so that it can be passed onto the next template to be processed. ********* I have a function: function set_funct(funct){ document.all.pub_hol.funct.value = &quot;funct&quot;; } ********* And call it with: <input type=&quot;submit&quot; value=&quot;Add...
  2. jmorris

    Rounding corners of tables.

    I have seen a few sites lately which have rounded corners on the tables, rather then right angle corners. I imagine this is done with css. Does anyone know what attributes/parameters are used to acheive this. Thanks in advance.
  3. jmorris

    Validating Radio Buttons

    I am wanting to validate a that a radio button has been selected, can I just use the same sort of javascript as validating that a text field has a value? (I tried this and couldn't get it working). Can anyone suggest some javascript to validate a radio button from a set has been selected...
  4. jmorris

    Checking the length of a string item in a list.

    I have a textarea box in a form. Within that text area box, the user will insert a list of phone numbers seperated by a comma. I do not want to restrict the total amount of characters inserted into the textarea as we want to keep the actual list limitless.... however, I do want to show an...
  5. jmorris

    JS popup and form variables

    I have some Dreamweaver generated code that creates a popup. (see below). This code has worked fine until we tested it on IE 5.5. With IE 5.5, the tamplate in the action of the form is not receiving the form variables. Does anyone know of a more stable why I can acheive what I am trying to...
  6. jmorris

    checking to see if an object exists or not.

    I am wanting to detect if an object (a popup in this case) exists or not. Basically, I am wanting to write a function that pops up a window if id doesn't exist, or in the case that it does exist, just brings it into focus. The function is currently like this...
  7. jmorris

    Referring to a document in a Frame

    I am trying to pass a form variable from a popup to the popups opener. The problem I am having is that the document I am trying to pass it to is in a frame. SO, opener.document.formname etc..... will not work I tried opener.document.framename.document.formname etc.. but still no luck. Does...
  8. jmorris

    converting string to integer

    I have two values that have been input into a form field, I am wanting to see if one is greater than the other, but when I do the comparison, it is comparing the 2 values as strings..... Does anyone know how I can convert a string to an integer? Any help greatly appreciated Thanks
  9. jmorris

    reload() and reposting form data

    I am using the javascript reload() function to refresh a page. The page has form data and when the page is reloaded an alert box is being displayed asking if you would like to &quot;repost form data&quot;. Does anyone know if this can be bypassed or &quot;yes&quot; can be passed so that this...
  10. jmorris

    "Repost Form Data " popup

    Does anyone know how the Repost Form Data&quot; popup can be disabled or defaulted to yes.<br><br>At the moment when a page with a form in it is refreshed, the browser returns a popup asking if the user would like to &quot;Repost form data&quot;.&nbsp;&nbsp;I am wanting to remove this popup so...
  11. jmorris

    calling function from window

    Try this:<br><br>opener.parent.document.functionName(Parameters);<br><br>the OPENER refers to the window that opened the window you want to call the function from.&nbsp;&nbsp;So if the function is in the main window, and from the main window you open a popup or whatever, you can refer to the...
  12. jmorris

    'Repost Form Data ' Popup

    It is on a Netscape Server and the application is writtin in Cold Fusion.
  13. jmorris

    'Repost Form Data ' Popup

    Does anyone know how to turn off the &quot;Repost Form Data?&quot; popup when a page with a form is refreshed.&nbsp;&nbsp;Either by turning it off or sending the &quot;yes&quot; answer with the close funcion.<br><br>The window is being refreshed using the JavaScript &quot;reload()&quot...
  14. jmorris

    Passing problems with a space.

    Basically I see nothing.&nbsp;&nbsp;<br><br>If it is working, when I click the hyperlink, the value is passed to the form in the opener window.<br><br>If is not working, when I click the hyperlink, absolutely nothing happens.&nbsp;&nbsp;It is just dead.<br><br>Thanks for your reply.<br><br>Jason...
  15. jmorris

    Passing problems with a space.

    Javascript is not my language of expertise, so bare with me if you could.<br><br>I just wrote a short script which allows text to be passed from one window to another.&nbsp;&nbsp;It works fine with one word, but for 2 words (such as a full name) it does not work.&nbsp;&nbsp;I think tha fact that...

Part and Inventory Search

Back
Top