Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Basic Chat</title>
  5. <script src="scripts/Chat.Config.js"></script>
  6. <style>
  7. #mycontent, #mychat {
  8. width: 400px;
  9. height: 400px;
  10. float: left;
  11. border: 5px solid #000;
  12. margin-left: 10px;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div id="mycontent">&nbsp;This is my website content.</div>
  18. <div id="mychat" style="position:relative;" />
  19. <script src="scripts/jquery-2.0.3.min.js"></script>
  20. <script>
  21. $(document).ready(function () {
  22. $("#mychat").hide();
  23. var page = 'http://micc.xxx.xxxxx/ccmwa/chat/AAAAAAAA-BBBB-CCCC-DDDD-EEEEEEEEEEEE';
  24. // var page = document.location.protocol + '\/\/' + document.location.host + '/ccmwa/chat/AAAAAAAA-BBBB-CCCC-DDDD-EEEEEEEEEEEE';
  25. $("#mychat").load(page, { queueId: "AAAAAAAA-BBBB-CCCC-DDDD-EEEEEEEEEEEE", hdr: "move", targetContainer: "#mychat" }, function (data) {
  26. $("#mychat").show();
  27. });
  28. });
  29. </script>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement