Advertisement
Farbjodr

juqster chatline fix

Sep 23rd, 2015
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Dupl-msg
  3. // @version 0.1
  4. // @description
  5. // @author Ravana
  6. // @match http://www.juqster.com/hub.html*
  7. // @require http://code.jquery.com/jquery-latest.js
  8. // ==/UserScript==
  9.  
  10. setTimeout(function() {
  11. $("#chatFormContent").keyup(function(e){
  12. if (e.keyCode == 13) {
  13. $("#chatFormContent").val("");
  14. }
  15. })
  16. },1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement