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 | : 18.117.104.6
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 /
worldresourceB /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
vendor
[ DIR ]
drwxr-xr-x
ajax-mail.js
1.31
KB
-rw-r--r--
bootstrap.min.js
47.8
KB
-rw-r--r--
jquery.ipages.min.js
75.52
KB
-rw-r--r--
main.js
15.6
KB
-rw-r--r--
pdf.min.js
237.93
KB
-rw-r--r--
plugins.js
206.21
KB
-rw-r--r--
popper.min.js
18.74
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ajax-mail.js
/*--------------------------------- ajax-mail.js -----------------------------------*/ $(function() { // Get the form. var form = $('#contact-form'); // Get the messages div. var formMessages = $('.form-messege'); // Set up an event listener for the contact form. $(form).submit(function(e) { // Stop the browser from submitting the form. e.preventDefault(); // Serialize the form data. var formData = $(form).serialize(); // Submit the form using AJAX. $.ajax({ type: 'POST', url: $(form).attr('action'), data: formData }) .done(function(response) { // Make sure that the formMessages div has the 'success' class. $(formMessages).removeClass('error'); $(formMessages).addClass('success'); // Set the message text. $(formMessages).text(response); // Clear the form. $('#contact-form input,#contact-form textarea').val(''); }) .fail(function(data) { // Make sure that the formMessages div has the 'error' class. $(formMessages).removeClass('success'); $(formMessages).addClass('error'); // Set the message text. if (data.responseText !== '') { $(formMessages).text(data.responseText); } else { $(formMessages).text('Oops! An error occured and your message could not be sent.'); } }); }); });
Close