-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfollowing.php
More file actions
30 lines (26 loc) · 914 Bytes
/
following.php
File metadata and controls
30 lines (26 loc) · 914 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
<!-- The Modal for listing users who liked posts-->
<div class="modal createposts rounded-0" id="followingmodel">
<div class="modal-dialog">
<form method="POST" id="formpost" class="modal-content border-0 rounded-0 shadow">
<div class="modal-header sticky-top">
<h4 class="modal-title ">Following<small></small></h4>
<hr>
<button type="button" class="close" id="closedd" data-dismiss="modal">×</button>
</div>
<div class="modal-body" id="modal-body">
<?php require"c_php/following.php";?>
</div>
</form>
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
$("#followingmodel").hide();
$("#followinger").click(function(){
$("#followingmodel").show();
});
$("#closedd").click(function () {
$("#followingmodel").hide();
});
});
</script>