-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
32 lines (18 loc) · 902 Bytes
/
footer.php
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
<!-- jQuery first, then Bootstrap JS. -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/js/bootstrap.min.js" integrity="sha384-vZ2WRJMwsjRMW/8U7i6PWi6AlO1L79snBrmgiDpgIWJ82z8eA5lenwvxbMV1PAh7" crossorigin="anonymous"></script>
<script type="text/javascript">
$(".toggleForms").click(function() {
$("#signUpForm").toggle();
$("#logInForm").toggle();
});
$('#diary').bind('input propertychange', function() {
$.ajax({
method: "POST",
url: "updatedatabase.php",
data: { content: $("#diary").val() }
});
});
</script>
</body>
</html>