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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ScrabbleKing

  1. ScrabbleKing

    document.table_id DOM object

    I have forms created that I want to put in the 'display' section of the code. I know you cannot place a form within a form (thus, when I try, my code below no longer functions properly). How do I add a document.table_id DOM object to accomplish what the code below does so that when I add a...
  2. ScrabbleKing

    document.table_id DOM object

    I have forms created that I want to put in the 'display' section of the code. I know you cannot place a form within a form (thus, when I try, my code below no longer functions properly). How do I add a document.table_id DOM object to accomplish what the code below does so that when I add a...
  3. ScrabbleKing

    Collapseable/Expandable Vertical Menus

    I have a question...Why do you need to click on a link twice before it toggles the first time?
  4. ScrabbleKing

    Swapping values

    BillyRayPreachersSon, THANK YOU VERY MUCH! That worked perfectly. Sorry for the delay in responding. I have not checked back since my last post. Thank you Dan! I am giving you a star also.
  5. ScrabbleKing

    Swapping values

    Thank you Lee. I added your code and renamed the function to swapSel. It works great for swapping the values, but when selecting from the dropdown again the prevSel does not get updated (unless you hit the 'swap' button an even number of times). Also, to answer your question, It is a ternary...
  6. ScrabbleKing

    Swapping values

    My original code example is copied and pasted.
  7. ScrabbleKing

    Swapping values

    How do I get nowSel and prevSel to swap each time the 'Swap' button is pressed (and only if both nowSel and prevSel have values)? <script type="text/javascript"> var selected=false; function showSel(s){ var t1=s.form['prevSel']; var t2=s.form['nowSel']; selected?t1.value=selected:null...
  8. ScrabbleKing

    I am trying to, in effect, add tv s

    I am trying to, in effect, add tv station options that one changes with a dropdown. How do I make a dropdown that changes what is played in media player onchange? These are three of my options: http://interface.audiovideoweb.com/glnk/2958/play.asx http://www.scctv.net/SCCtvBroadband.asx...
  9. ScrabbleKing

    2 issues with forms displayed

    Thank you very much, feherke, that solved my second issue. I still hae the first issue. Let re-word it... When selecting a numeric option or an alpha selection with the mouse, you must select it twice or else you cannot change the radio buttons using the arrow keys more than once without the...
  10. ScrabbleKing

    2 issues with forms displayed

    The code below works fine with two exceptions: 1) When selecting a numeric choice and then selecting a alpha option...If you then use the arrow keys to switch back and forth between the alpha options the focus goes off of the options after 1 or 2 keypresses causing the arrows keys to no longer...
  11. ScrabbleKing

    Changing options displayed

    Can someone please help me??
  12. ScrabbleKing

    Changing options displayed

    How do I make it so that choosing: Selection 123 displays Option ABC, DEF, GHI Selection 456 displays Option JKL, MNO Selection 789 displays Option PQR, STU, VWX, YZ <html> <head> <title></title> <script language="JavaScript" type="text/javascript"> <!-- var Last; function...
  13. ScrabbleKing

    Changing what is displayed in table

    To clarify, I don't want the Mapquest, Super Pages, and Hotjobs to display under the options as they do now. I only want them to display in the top right table when the given option is selected.
  14. ScrabbleKing

    Changing what is displayed in table

    I do not know how to change what is displayed in the top right table when choosing between the 4 options. Instead of having the number of text boxes change as they do now, I want the appropriate form to be displayed in the top right table based on the option selection. NOTE: I must continue to...
  15. ScrabbleKing

    Search using two text boxes

    Thank you for your reply. I am trying to put code on my site that will open career builders website with their results based on the user's input on my page. I am not getting any errors. Career Builder's site opens, but does not do a search based on the user's input. It opens as if there was...

Part and Inventory Search

Back
Top