
"iBox is a simple yet full-featured and developer jQuery JavaScript popup plugin to create a responsive modal window for both static and dynamic content. More features: Supports plain text and HTML content. Allows you to append more content to the existing modal window. Allows you to asynchronously load an external URL. Content loading indicator."
"How to use it: 1. To get started, load the iBox plugin's files from the dist directory. <link href="./dist/ibox.css" rel="stylesheet"> <script src="./dist/ibox.js"></script> 2. Create a new iBox instance. const myPopup = new ibox(); 3. Set the content to be displayed in the modal popup. // set new content myPopup.content_set("<h2>jQueryScript.Net</h2><img src='https://source.unsplash.com/600x300/?people'>"); // set new content from an external link myPopup.content_async_set('https://www.example.com');"
"3. Display the modal window on the screen. // the same as myPopup.display(true) myPopup.open(); // or myPopup.content_show(); // or myPopup.show(); 5. Append more content to the modal window. // append new content myPopup.content_append('New Content Here'); // append new content from an external link myPopup.content_async_append('https://www.example.com'); 6. More API methods."
iBox is a full-featured jQuery popup plugin that creates responsive modal windows for both static and dynamic content. The plugin supports plain text and HTML content, allows appending additional content to an existing modal, and enables asynchronous loading of external URLs with a content loading indicator. Setup requires including ibox.css and ibox.js from the dist directory and creating an instance via const myPopup = new ibox(). Content can be set synchronously or asynchronously, shown or hidden, appended, and controlled through a variety of API methods for creation, retrieval, closing, and DOM access.
Read at jQuery Script
Unable to calculate read time
Collection
[
|
...
]