Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @id trip fix
- // @name Trip fix
- // @version 1.0
- // @namespace
- // @author
- // @description
- // @include /^https?:\/\/2ch.hk\/*/
- // @run-at window-load
- // @require https://code.jquery.com/jquery-2.1.4.min.js
- // ==/UserScript==
- var $input=$('#name');
- if($input.size()){
- var $qrInput=$input.clone();
- $qrInput.attr('id', 'qr_name').attr('type', 'hidden');
- $('#qr-postform').prepend($qrInput);
- $input.on('keyup', function(){
- $qrInput.val($input.val());
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment