Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.6
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
julaysp1 /
public_html /
admin /
assets /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2025-09-01 07:26
Chart.roundedBarCharts.js
5.81
KB
-rw-r--r--
2024-10-25 15:16
bcmath-min.js
14.24
KB
-rw-r--r--
2024-10-25 15:16
chart.js
7.95
KB
-rw-r--r--
2024-10-25 15:16
codemirror.js
1.53
KB
-rw-r--r--
2024-10-25 15:16
dashboard.js
15.99
KB
-rw-r--r--
2024-10-25 15:16
disabled.js
1.77
KB
-rw-r--r--
2024-10-25 15:16
file-upload.js
398
B
-rw-r--r--
2024-10-25 15:16
hoverable-collapse.js
806
B
-rw-r--r--
2024-10-25 15:16
jquery-file-upload.js
185
B
-rw-r--r--
2024-10-25 15:16
jquery.cookie.js
3.05
KB
-rw-r--r--
2024-10-25 15:16
off-canvas.js
188
B
-rw-r--r--
2024-10-25 15:16
pdf417-min.js
30.58
KB
-rw-r--r--
2024-10-25 15:16
select.dataTables.min.css
3.83
KB
-rw-r--r--
2024-10-25 15:16
select2.js
237
B
-rw-r--r--
2024-10-25 15:16
settings.js
3.79
KB
-rw-r--r--
2024-10-25 15:16
template.js
4.45
KB
-rw-r--r--
2024-10-25 15:16
todolist.js
952
B
-rw-r--r--
2024-10-25 15:16
typeahead.js
1.88
KB
-rw-r--r--
2024-10-25 15:16
Save
Rename
(function($) { 'use strict'; $(function() { var todoListItem = $('.todo-list'); var todoListInput = $('.todo-list-input'); $('.todo-list-add-btn').on("click", function(event) { event.preventDefault(); var item = $(this).prevAll('.todo-list-input').val(); if (item) { todoListItem.append("<li><div class='form-check'><label class='form-check-label'><input class='checkbox' type='checkbox'/>" + item + "<i class='input-helper'></i></label></div><i class='remove ti-close'></i></li>"); todoListInput.val(""); } }); todoListItem.on('change', '.checkbox', function() { if ($(this).attr('checked')) { $(this).removeAttr('checked'); } else { $(this).attr('checked', 'checked'); } $(this).closest("li").toggleClass('completed'); }); todoListItem.on('click', '.remove', function() { $(this).parent().remove(); }); }); })(jQuery);