Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 3.128.29.244
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
derozboy /
ornolevaxo.online /
app /
admin /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
chart.js
7.82
KB
-rw-r--r--
2023-04-17 05:33
dashboard.js
6.87
KB
-rw-r--r--
2023-04-17 05:33
documentation.js
835
B
-rw-r--r--
2023-04-17 05:33
file-upload.js
398
B
-rw-r--r--
2023-04-17 05:33
hoverable-collapse.js
806
B
-rw-r--r--
2023-04-17 05:33
off-canvas.js
185
B
-rw-r--r--
2023-04-17 05:33
tabs.js
974
B
-rw-r--r--
2023-04-17 05:33
template.js
1.96
KB
-rw-r--r--
2023-04-17 05:33
todolist.js
952
B
-rw-r--r--
2023-04-17 05:33
tooltips.js
809
B
-rw-r--r--
2023-04-17 05:33
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-trash'></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);