-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (31 loc) · 1.16 KB
/
index.html
File metadata and controls
38 lines (31 loc) · 1.16 KB
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
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StickyChat.js Demo</title>
<link rel="stylesheet" href="./stickychat-plugin/jquery.stickychat.css">
<style>
/* Just some basic styling for the demo page */
body { font-family: sans-serif; text-align: center; padding-top: 50px; background-color: #f4f7f6; }
h1 { color: #333; }
</style>
</head>
<body>
<h1>StickyChat.js Demo</h1>
<p>Look at the bottom right corner of your screen!</p>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="./stickychat-plugin/jquery.stickychat.js"></script>
<script>
$(document).ready(function() {
// Attach to the body
$('body').stickyChat({
phoneNumber: "9100000000", // Example India code
message: "Need help? Chat with us!",
position: "right", // change to 'left' to test
defaultText: "Hi! I found your website and need some assistance."
});
});
</script>
</body>
</html>