Get started with blissfuljs CDN
MIT licensed
BlissfulJS is a lightweight library for creating reactive user interfaces.
Tags:- DOM
- Events
- Ajax
- Promises
- OOP
- ES5
Stable version
Copied!
How to start using blissfuljs CDN
<!DOCTYPE html>
<html>
<head>
<title>Get started with blissfuljs CDN - cdnhub.io</title>
<script src="https://cdn.cdnhub.io/blissfuljs/1.0.6/bliss.min.js"></script>
</head>
<body>
<button id="myButton">Click me!</button>
<script>
const button = document.getElementById('myButton');
button.addEventListener('click', () => {
Bliss.create({
target: document.body,
message: 'You clicked the button!',
type: 'success'
});
});
</script>
</body>
</html>
Copied!
Copied!
Copied!
Copied!