Skip to content

Commit 5adbf8a

Browse files
authored
Update and rename config to running_date.html
1 parent f07708e commit 5adbf8a

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

TermuxHackz-WebShell/config

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
2+
<meta name="viewport" content="width=device-width, initial-scale=1"/>
3+
<div id="runningTime"></div>
4+
5+
<script type="text/javascript">
6+
$(document).ready(function() {
7+
setInterval(runningTime, 1000);
8+
});
9+
function runningTime() {
10+
$.ajax({
11+
url: 'timeScript.php',
12+
success: function(data) {
13+
$('#runningTime').html(data);
14+
},
15+
});
16+
}
17+
</script>
18+

0 commit comments

Comments
 (0)