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 TouchToneTommy 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 cepiscipher

  1. cepiscipher

    Simple - How to target on this script?

    cLFlaVA Where should I put this? top.frames['frameName'].location = choise1;
  2. cepiscipher

    Simple - How to target on this script?

    Hello I have this script: <script language="JavaScript"> function menuRedirect(){ var select = eval(window.redirectForm.elements[0].selectedIndex); var choise1 = "../html/menu/azul/index.htm"; var choise2 = "../html/menu/chinita/index.htm"; if (select==0) void(0); else if (select==1)...
  3. cepiscipher

    How to taget on this script?

    Sorry, this is the complete code: <!-- TWO STEPS TO INSTALL COOKIE REDIRECT: 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT...
  4. cepiscipher

    How to taget on this script?

    Hello I have this script: case 'cat' : url = 'html/menu/azul/index.htm'; // change these! break; case 'dog' : url = 'html/menu/chinita/index.htm'; break; case 'gerbil' : url = 'gerbil.html'; break; case 'gopher' : url = 'gopher.html'; break; } window.location.href = url...
  5. cepiscipher

    Adding another class name

    I went ahead and tried this suggestion, but the js won't run.   Here are the links of the site I'm working on: http://www.celsoportela.com/vellonera/call.htm (this the final DEMO of the site) http://www.celsoportela.com/vellonera/esc_generos.htm (this is the frame on which I’m using the code...
  6. cepiscipher

    Adding another class name

    I went ahead and tried this suggestion, but the js won't run. Here are the links of the site I'm working on: http://www.celsoportela.com/vellonera/call.htm (this the final DEMO of the site) http://www.celsoportela.com/vellonera/esc_generos.htm (this is the frame on which I’m using the code...
  7. cepiscipher

    Adding another class name

    Thanks for the replay. I know how to add them in the CSS document. I want to use the on, off, hover, or click classes in the javascript for another class. I already have working the TdRollOver class on all the <TD>'s, what I want is to do the same effect with another class to only one of the...
  8. cepiscipher

    Adding another class name

    Hello (actually I'm a web designer) I'm trying to add another class name to this javascript so I can make a different class in the css to be used on a different table. I no knoo nothing about javascript. I got this js from: http://www.webreference.com/programming/javascript/jf/column7/31.htm...

Part and Inventory Search

Back
Top