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: *

  • Users: bench
  • Order by date
  1. bench

    Drop down navigation

    could you please e-mail that code to me too. I will like to learn how to do that!! benchleyb@hotmail.com
  2. bench

    Getting the href from one frame and viewing it in another

    I was wondering if you had your form(<form>)tag with a name &quot;formgo&quot; if not, try it.
  3. bench

    Using split in .asp page

    Try using double quote instead. Like this: var arChoices = strStateCodeList.split(&quot;^&quot;)(just a suggestion). Also check to see if method split() can be use in asp. One more thing, I you using the form name=&quot;frmTest&quot;, try taking it off if not.
  4. bench

    How to display a row

    Ok, this is what I want to accomplish. I am creating a popup window that will display thumbnail of pictures. I am dynamically displaying these pictures from an array. Now, I want to be able to display for example if have 26pictures and want to display 4pictures in each rows in a table and then...
  5. bench

    How to pass a script tag into popup window

    Hi I am trying to create a popup window that will have some images. I want this window to have some javascript functionality such as rollover etc. My problem is, how can I pass the script tag(<script></script>) into this window to allow me to accomplish my task? I tried passing the tag but I...
  6. bench

    How to Validate form

    I'm having problem with validating e-mail address and phone number in vbscript. Can you give me examples of how this is done. I know how to check and see if the value entered is numeric or not and also to see if there was a value entered by the user by using the &quot;Len()&quot; method.
  7. bench

    Can someone help me modify thi

    Can someone help me modify this &quot;password example&quot; so that it works. Currently it just calls &quot;alert()&quot; statements when it is suppose to save, get, and delete a cookie. I need to replace those &quot;alert()&quot; callswith the appropriate cookie call (GetCookie, SetCookie...
  8. bench

    help with cookies

    Can someone help me modify this &quot;password example&quot; so that it works. Currently it just calls &quot;alert()&quot; statements when it is suppose to save, get, and delete a cookie. I need to replace those &quot;alert()&quot; calls with the appropriate cookie call (GetCookie, SetCookie...
  9. bench

    if onclick else onunload function??

    try this but i'm not too certain about it: <html> <head> <script> function myMsg(){ if(window.print()) { alert(&quot;Thank you&quot;) }else{ alert(&quot;Please print page&quot;) location.reload() } } </script> <body onUnload=&quot;myMsg()&quot;> </body> </html>
  10. bench

    popup windows

    Yes it is possible to do. Try this: var myWin = false funtion popup1(){ if(!myWin || myWin.closed) mycallWind=open(&quot;mypage&quot;,&quot;_&quot;,width,height) mycallWind.focus() }
  11. bench

    popup window wouldn't work

    I tried your suggestion, but it only open one window when I select two. Is there a way I can stop the loop when the user say, select 2 sites from my select box. I think that's the problem I'm having.
  12. bench

    onClick and NN, what gives?

    for give me if I'm wrong, but this only work in IE.
  13. bench

    popup window wouldn't work

    I tried your suggestion, but this time it only open one window when i select 2 window. function go() { var myCars=window.document.myForm.mySites var URL; for (var i=0 ; i < myCars.length ; i++) { if (myCars.options[i].selected==true)...
  14. bench

    popup window wouldn't work

    Hi can anyone show me how to open multiple popup window using myWin.open() in both IE5&N4. This is how I want it to work. I have a select box which will allow my user to select multiple sites. After the selection, I want to popup those sites base upon their preference. However, when i select...
  15. bench

    How to open multiple window using &quot;for&quot; loop

    Sorry about!! Here is the correct code that couldn't work. Thanks in advance. function go() { var myCars=window.document.myForm.mySites var URL; for (var i=0 ; i < myCars.length ; i++) { if (myCars.options[i].selected) URL=...
  16. bench

    How to open multiple window using &quot;for&quot; loop

    Thanks for pointing that out. However, it was my error why posting the code at this site. I already tried your that but it still couldn't work function go() { var myCars=window.document.myForm.mySites var URL; for (var i=0 ; i < myCars.length ; i++) {...
  17. bench

    How to open multiple window using &quot;for&quot; loop

    Hi can anyone show me how to open multiple popup window using myWin.open() in both IE5&N4. This is how I want it to work. I have a select box which will allow my user to select multiple sites. After the selection, I want to popup those sites base upon their preference. However, when i select...

Part and Inventory Search

Back
Top