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 SkipVought 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. mcghee31

    configure ICA once for workstation

    I am current running MetaFrame XPe SP3 feature release 3 with Citrix Program Neighborhood (ICA Client)v10. Is their a way to have them all ready configured with an application set? I find myself having to go to each users account and configure the settings there.
  2. mcghee31

    onclick returns true instead of false

    I am trying to use the onClick event in a form to test to see how to to prevent the form action form be perfromed. I the onClick line: <input type="submit" name="submit" value="Submit" onClick="testaction()" /></p> The form starts with: <form name="appts" method="post" action=...
  3. mcghee31

    capture text selected in a select tag

    Found some reading material that helped solve the issue. <script type="text/javascript"> function passVals(){ //used to get text of selected item in select tag reqList = document.getElementById("req"); var full_name = reqList.options[reqList.selectedIndex].text; //separate...
  4. mcghee31

    capture text selected in a select tag

    I have a simple select tag on a form <select name="req" id="req' > <option value="1">James Young</option> <option value="2">Kebu Steward</option> <option value="3">Randy Clarke</option> </select> How can I capture the text of the selected item. example suppose "Kebu Steward" was selected by...
  5. mcghee31

    how to see if submit but was pressed

    Ok I got it I had to add .document window.opener.document.appts.req_f_name.value ='testing';
  6. mcghee31

    how to see if submit but was pressed

    I tried code on the child form function passVals() { document.appts.req_f_name.value ='testing'; } //appts is the name of the parent form //req.f_name is the name of a text box on the parent form Any ideas what I am missing?
  7. mcghee31

    how to see if submit but was pressed

    thanks Glen, I am trying to build an external script and thus that example is one way to validate but I was look to validate it in the external script I changed my tack to: <form onSubmit="passVals()" > In the head of the html doc I have <script> function passVals() { alert('testing'); }...
  8. mcghee31

    how to see if submit but was pressed

    I am trying to test to see if a submit button was pressed on a form using <script> if(document.req.submit){ alert('testing'); } </script> the form code start with <form method="post" action=""> the submit button code is <input type="submit" id="submit" value="submit" What am I missing...
  9. mcghee31

    open plain pop-up window

    here is a link of the current form in action. http://nucitytech.com/popwin/test.htm
  10. mcghee31

    open plain pop-up window

    I created a function to open another html page, I currently use the following code to accomplish this task HTML code: <input type="text" name="test" onclick="opentime()" /> External JS file code: function opentime() {...
  11. mcghee31

    padding created in IE6 but not Firefox or Netscape

    I create a simple form that contains two text boxes and two radio buttons. Please view at the link below. http://nucitytech.com/forms/TimeAMPM.htm I added left margin space with "margin: 0 0 0 2em;" In Firefox and Netscape I get no padding with the added margin but in IE6 it creates padding...
  12. mcghee31

    works in firebox and netscape but in IE get object expected

    I have a basic script that disable and enables twp input text boxes. It works in Firefox and Netscape but on in Internet Explorer 6 I call the external script in the html head using: <script type="text/javascript" src="./include/enable_disable.js"></script> I call the function using the...

Part and Inventory Search

Back
Top