on focusout for radio/checkboxes
I'm trying to fire a focusout after clicking away from radio & checkbox input. Here's typ. html:
- <form class="cd-form">
- <div>
- <ul class="cd-form-list">
- <li>
- <input type="radio" ...>
- </input>
- </li>
- <li> ...
- </ul>
- </div>
- ... other input elements
- </form>
Here's the jquery I'm trying to use, as input is a child of the ul :
- $('form.cd-form ul.cd-form-list').on('focusout', function() {
- console.log('Focusout occured');
- });
I'm not getting console log when clicking away to other elements. What am I doing wrong?