Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Dupl-msg
- // @version 0.1
- // @description
- // @author Ravana
- // @match http://www.juqster.com/hub.html*
- // @require http://code.jquery.com/jquery-latest.js
- // ==/UserScript==
- setTimeout(function() {
- $("#chatFormContent").keyup(function(e){
- if (e.keyCode == 13) {
- $("#chatFormContent").val("");
- }
- })
- },1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement