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
/
var /
www /
cesa.co.za /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
jQuery-File-Upload-10.32.0
[ DIR ]
drwxr-sr-x
2022-01-21 08:57
jquery-ui-multiselect-widget-master
[ DIR ]
drwxr-sr-x
2017-07-25 13:54
jqueryui
[ DIR ]
drwxr-sr-x
2017-07-25 13:55
jqueryui-1-13
[ DIR ]
drwxr-sr-x
2023-05-25 08:48
pdfjs
[ DIR ]
drwxr-sr-x
2025-02-20 13:23
select2
[ DIR ]
drwxr-sr-x
2024-02-16 10:55
jquery-1.11.3.min.js
93.71
KB
-rw-r--r--
2024-02-14 08:49
jquery-3.2.1.min.js
84.63
KB
-rw-r--r--
2024-02-14 08:49
jquery.autogrow.js
2.85
KB
-rw-r--r--
2025-02-06 10:47
jquery.datetimepicker.full.min.js
60.05
KB
-rw-r--r--
2024-02-14 08:49
jquery.steps.css
9.62
KB
-rw-r--r--
2024-06-07 11:41
jquery.steps.js
52.09
KB
-rw-r--r--
2024-06-07 11:41
jquery.steps.min.js
13.53
KB
-rw-r--r--
2024-02-14 08:49
jquery.validate.js
46.57
KB
-rw-r--r--
2024-02-14 08:49
msd.js
2.34
KB
-rw-r--r--
2024-10-08 13:19
shared.js
12.43
KB
-rw-r--r--
2026-04-08 08:10
wordpress.js
369
B
-rw-r--r--
2024-10-10 10:02
Save
Rename
(function($) { /** * Auto-growing textareas; technique ripped from Facebook * * * http://github.com/jaz303/jquery-grab-bag/tree/master/javascripts/jquery.autogrow-textarea.js */ $.fn.autogrow = function(options) { return this.filter('textarea').each(function() { var self = this; var $self = $(self); var minHeight = $self.height(); var noFlickerPad = $self.hasClass('autogrow-short') ? 0 : parseInt($self.css('lineHeight')) || 0; var settings = $.extend({ preGrowCallback: null, postGrowCallback: null }, options ); var shadow = $('<div></div>').css({ position: 'absolute', top: -10000, left: -10000, width: $self.width(), fontSize: $self.css('fontSize'), fontFamily: $self.css('fontFamily'), fontWeight: $self.css('fontWeight'), lineHeight: $self.css('lineHeight'), resize: 'none', 'word-wrap': 'break-word' }).appendTo(document.body); var update = function(event) { var times = function(string, number) { for (var i=0, r=''; i<number; i++) r += string; return r; }; var val = self.value.replace(/&/g, '&') .replace(/</g, '<') .replace(/>/g, '>') .replace(/\n$/, '<br/> ') .replace(/\n/g, '<br/>') .replace(/ {2,}/g, function(space){ return times(' ', space.length - 1) + ' ' }); // Did enter get pressed? Resize in this keydown event so that the flicker doesn't occur. if (event && event.data && event.data.event === 'keydown' && event.keyCode === 13) { val += '<br />'; } shadow.css('width', $self.width()); shadow.html(val + (noFlickerPad === 0 ? '...' : '')); // Append '...' to resize pre-emptively. var newHeight=Math.max(shadow.height() + noFlickerPad, minHeight); if(settings.preGrowCallback!=null){ newHeight=settings.preGrowCallback($self,shadow,newHeight,minHeight); } $self.height(newHeight); if(settings.postGrowCallback!=null){ settings.postGrowCallback($self); } } $self.change(update).keyup(update).keydown({event:'keydown'},update); $(window).resize(update); update(); }); }; })(jQuery);