Get started with kiwi CDN

MIT licensed

Kiwi: Lightweight JS for interactive forms, real-time validation & error messages.

Tags:
  • kiwi
  • asynchronous
  • template
  • web
  • express
  • engine
  • html

Stable version

Copied!

How to start using kiwi CDN


<!DOCTYPE html>
<html>
<head>
  <title>Get started with kiwi CDN - cdnhub.io</title>
  <script src="https://cdn.cdnhub.io/kiwi/0.2.1/kiwi.min.js"></script>
</head>
<body>
  <button id="myButton">Click me!</button>

  <script>
    const button = document.getElementById('myButton');

    kiwi.on('click', button, (event) => {
      console.log('Button clicked!');
    });
  </script>
</body>
</html>
Copied!
Copied!

All versions