try to take over the world!
当前为
// ==UserScript==
// @name voz filter
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match file:///C:/Users/paul.nguyen/Desktop/GCL%20Admin%20-%20Order%20Detail%20108121-0000-151117.htm
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js
// @require http://code.jquery.com/ui/1.11.2/jquery-ui.js
// @include /^https?://vozforums\.com/.*$/
// @include /^https?://gcladmin\.dev\.cardlabcorp\.com/.*$/
// ==/UserScript==
/* jshint -W097 */
//$("#divHeader").css("display","none");
//$( "table" ).has( "th:contains('User Information')" ).css("border","10px solid red");
//$("#divHeader").remove();
//To move ABOVE an element:
//$('.whatToMove').insertBefore('.whereToMove');
//To move AFTER an element:
//$('.whatToMove').insertAfter('.whereToMove');
//To move inside an element, ABOVE ALL elements inside that container:
//$('.whatToMove').prependTo('.whereToMove');
//To move inside an element, AFTER ALL elements inside that container:
//$('.whatToMove').appendTo('.whereToMove');
$('#ctl00_MainContent_Container5').insertBefore('#ctl00_MainContent__userContainer');
//$('table.tborder').css("border","10px solid red");