jBox w/o close!

by Michael Baas

HTML

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/StephanWagner/[email protected]/dist/jBox.all.min.css">
<script src="https://cdn.jsdelivr.net/gh/StephanWagner/[email protected]/dist/jBox.all.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">

JavaScript

var myJBox;

$(document).ready(function() {

new jBox("Modal", {
"attributes":{"x":"center","y":"center"},
"autoClose":false,
"closeButton":true,
"closeOnClick":false,
"overlay":false,
"closeOnMouseleave":false,
"color":"#99E547",
"content":"<span><span class='fa-solid fa-trophy'></span>&nbsp;Congratulations, you have submitted solutions to all ten problems and maximised your chances of winning a prize!<br><br>Why not share your success with your friends?<br><br>#dyalog #apl #aplchallenge #learnapl<br><br>Visit <a href='https://www.dyalog.com/getting-started.htm'>https://www.dyalog.com/getting-started.htm</a> for suggestions, resources, and tips to help you continue your APL journey.</span>",
"width":450
}).open();


});