Copy and Past All

try to take over the world! FY

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Copy and Past All
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world! FY
// @author       Kriz
// @copyright    2017+ Kriz
// @match        https://tac.trecom.pl/mcd-serwis/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js
// @grant        none
// ==/UserScript==

jQuery(function($) {   
    	$("#merchant").keydown(function(e){
    		if (e.keyCode == 9 && !e.shiftKey ) {
    			e.preventDefault();
    			$("#contactPerson").focus();
    		}
	});
    	$("#ticketCategory").keydown(function(f){
    		if (f.keyCode == 9 && ! f.shiftKey) {
    			f.preventDefault();
    			$("#title").focus();
    		}
    	});
            $("#title").keyup(function(){
        	if ($("#title").val) { // checked
        	var copyText = $("#title").val();
            $("#description").val(copyText);
    	}
	});
     var select = dijit.byId('statusId');
       select.on('change', function(){
            var copyClose = $("#dijit_form_TextBox_9").val();
            $("#fixAccepter").val(copyClose);
    });
});