Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 24th, 2012  |  syntax: JavaScript  |  size: 0.18 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. var mySelect = document.getElementById('word');
  2. var data = mySelect.options[mySelect.selectedIndex].value;
  3. var traduction = '';
  4.  
  5.  
  6. if(data == 'cat') {
  7.         traduction = 'chat';
  8. }