# mxchat-basic/trunk/js/floating-script.js

MxChat – AI Chatbot &amp; Content Generation for WordPress, version trunk. 6 lines.

- Page: https://pluginprobe.com/plugins/mxchat-basic/trunk/code/js/floating-script.js
- Raw: https://pluginprobe.com/plugins/mxchat-basic/trunk/raw/js/floating-script.js
- Modified: 2024-08-10T17:35:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/mxchat-basic/trunk/code/js/floating-script.js#L10-L20`.

```javascript
jQuery(document).ready(function($) {
       $('#chatbot-float-btn').on('click', function(){
           $('#chatbot-float-window').toggle(); // Show/hide the chat window
       });
   });

```
