1. JavaScript / Говнокод #23634

    0

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    <input type="text" id="text" hidden="true">
      <script type="text/javascript">
        document.getElementById('body').onkeypress = function(e) {
          var text = document.getElementById('text')
          if(text.value == "W" && e.key == "Q" ||
              text.value == "Q" && e.key == "W" ||
              text.value == "w" && e.key == "q" ||
              text.value == "q" && e.key == "w" ||
              text.value == "й" && e.key == "ц" ||
              text.value == "ц" && e.key == "й" ||
              text.value == "Й" && e.key == "Ц" ||
              text.value == "Ц" && e.key == "Й")
            alert("Привет!")
          text.value = e.key
        }
      </script>

    свежее говно вышло(

    Запостил: fuckercoder, 01 Января 2018

    Комментарии (5) RSS

    Добавить комментарий