Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. function local_input() {
  2.         document.getElementById("in").style.backgroundColor = "#FFFFFF";
  3.         var x = document.getElementById("in");
  4.         x.onkeydown = function(e) {
  5.             if (!e) e = window.event;
  6.             if (e.keyCode == 115) {
  7.                 submit_text();
  8.                 no_input();
  9.                 return false;
  10.             }
  11.           return true;
  12.         }
  13.         x.onkeypress = function() { return true; }
  14.         x.onkeyup = function() { return true; }
  15.     }