Welcome to the ChatBox demo page.

How to include ChatBox in your web pages.



In the body of your page, insert

<div id="my-div"></div>

After the body of the page, insert

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="/path/to/chatbox/js/chatbox.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#my-div").load("/path/to/chatbox/index.php"); }); </script> That's all folks.