Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Wykopowy walentynkowy czat - enter fix
  3. // @namespace http://wykop.pl/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author wloszczyn
  7. // @match http://www.wykop.pl/walentynki2016/room/*
  8. // @grant none
  9. // @require http://code.jquery.com/jquery-latest.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. $('form#chatForm #chatMessage').on('keypress', function(e) {
  15. if(e.keyCode==13 && !e.shiftKey){
  16. e.preventDefault();
  17. $("form#chatForm input[type=submit]").click();
  18. }
  19. });
  20. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement