jinkela-radio

Radio

Usage no npm install needed!

<script type="module">
  import jinkelaRadio from 'https://cdn.skypack.dev/jinkela-radio';
</script>

README

Jinkela-Radio

Install

npm install jinkela-radio

Usage

new Radio([args])

  • args Object Set of configurable options to set. Can have the following fields:
    • text String The default text.
    • readonly Boolean The readonly flag.

Demo Live

<meta charset="utf-8" />
<script src="https://unpkg.com/jinkela@1.2.19/umd.js"></script>
<script src="https://unpkg.com/jinkela-radio@1.0.0/index.js"></script>
<script>
addEventListener('load', () => {

  let hehe = new Radio({ text: 'hehe' }).to(document.body);

  console.log(hehe.checked);

});
</script>