-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.php
More file actions
32 lines (30 loc) · 900 Bytes
/
Copy pathfooter.php
File metadata and controls
32 lines (30 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
</div>
</div>
<!-- Jquery JS-->
<script src="vendor/jquery-3.2.1.min.js"></script>
<!-- Bootstrap JS-->
<script src="vendor/bootstrap-4.1/popper.min.js"></script>
<script src="vendor/bootstrap-4.1/bootstrap.min.js"></script>
<!-- Vendor JS -->
<script src="vendor/animsition/animsition.min.js"></script>
<!-- Main JS-->
<script src="js/main.js"></script>
<!-- end document-->
<script>
function change_cat(){
var category_id=document.getElementById('category_id').value;
window.location.href='?category_id='+category_id;
}
function delete_confir(id,page){
var check=confirm("Are you sure");
if(check==true){
window.location.href=page+"?type=delete&id="+id;
}
}
function set_to_date(){
var from_date=document.getElementById('from_date').value;
document.getElementById('to_date').setAttribute("min",from_date);
}
</script>
</body>
</html>