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. liteon

    Open a window in another page

    Try <A HREF=&quot;javascript:void(0)&quot; onClick=&quot;window.open('http://www...', 'Window new name', 'resizable=yes,height=500,width=600', false);&quot; >New window</A
  2. liteon

    Two javascript in one textfiled

    If I have two JavaScript function (oneX and twoY). What is the proper syntax to run them on a single TextField?, <input onBlur=&quot;oneX(this)&quot; onBlur=&quot;twoY(this)&quot;> does not work. Thanks.
  3. liteon

    script to check input

    OK, good question. The page POST to a PHP script after it and I do not want characters like /[~`!Ҥ@#$%^&*()_+=:;'{}\. And how do I check that there are only two words separated by space or couples of space.
  4. liteon

    script to check input

    Can someone help me writing a script that will check if text field contain name and family name and verify that there is space (at least 1 empty space) between the names. Html: <html> <head> <title>Untitled Document</title> </head> <body> Input Name and Family name: <input...
  5. liteon

    Checkboxed

    Thanks a lot, now I need to digest it.
  6. liteon

    Checkboxed

    Thanks, view the script it is a bit clearer right now. It seems that I can only choose one of the boxes while I would thank you if you can modify the code so I can push B, C, D but not A and opposite. Thanks a lot for all the help. Script: <html> <head> <title>Untitled Document</title>...
  7. liteon

    Checkboxed

    The last script is above my knowledge, but is it possible to make it behave as shown in the modified script below (it is hard to explain so I think better to see), but change the script to work in an &#8220;a, b, c function&#8221; mode. <html> <head> <title>Untitled Document</title> <script>...
  8. liteon

    Checkboxed

    Is it possible to make the script above generic so a,b,c will be like variables ($a,$b,$c) so I can use the function like oneCheckbox(a,b,c) or oneCheckbox(Tel,Fax,Email)? <html> <head> <title>Untitled Document</title> <script> function oneCheckbox(inBox){ if (inBox.name == &quot;A&quot; &&...
  9. liteon

    Checkboxed

    Thanks that&#8217;s what I call JavaScript magic.
  10. liteon

    Checkboxed

    The script below creates 3 checkboxes. Can anyone please help me to write a script that if checkbox A is pressed then the others (B and C) are disabled, and if checkbox B or/and C are pressed checkbox A will be disabled. Thanks. <html> <head> <title>Untitled Document</title> </head> <body>...
  11. liteon

    Empty a textbox

    How can I use javascript to empty a textbox or just give it a value of &quot;&quot;.

Part and Inventory Search

Back
Top