Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
js-actualizado /
[ HOME SHELL ]
Name
Size
Permission
Action
vendor
[ DIR ]
drwxrwxr-x
ajax-mail.js
1.22
KB
-rwxrwxr-x
bootstrap.min.js
36.47
KB
-rwxrwxr-x
jquery.magnific-popup.js
42.58
KB
-rwxrwxr-x
jquery.mb.YTPlayer.js
82.49
KB
-rwxrwxr-x
jquery.meanmenu.js
11.45
KB
-rwxrwxr-x
jquery.nicescroll.min.js
58.6
KB
-rwxrwxr-x
main.js
3.18
KB
-rwxrwxr-x
owl.carousel.min.js
41.77
KB
-rwxrwxr-x
plugins.js
11.3
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 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