vBocx.js
vBocx.js is designed using CSS and JavaScript to create alertboxes, promptboxes and confirmboxes. It can be customized with respect to background, foreground and position.
Include
vBocx.js can be included via Downloaded Files.
You can download vBocx.js by clicking Download option in the menu or You can visit our Bitbucket page.
or
Via Content Delivery Network(CDN),
You can download vBocx.js by clicking Download option in the menu or You can visit our Bitbucket page.
or
Via Content Delivery Network(CDN),
Include the CDNs in your html file.
Refer the below example.
https://cdn.jsdelivr.net/npm/vbocxjs.lib@1.0.2/dist/vbocx.js
https://cdn.jsdelivr.net/npm/vbocxjs.lib@1.0.2/dist/vbocx.css
Refer the below example.
<!DOCTYPE html>
<html>
<head>
<title>Test File</title>
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/vbocxjs.lib@1.0.2/dist/vbocx.css'>
<link href='' rel='stylesheet'>
</head>
<body>
<script type='https://cdn.jsdelivr.net/npm/vbocxjs.lib@1.0.2/dist/vbocx.js'></script>
<script>
var vBocx = new vBocx();
vBocx.alert('top', 'success', 'I am vBocx.js success alert !', 3000);
</script>
</body>
</html>
Note: Include both the CDNs.