* making it more obvious that it's a CSS-only solution (which is a very good thing)
* showing how to add them - i.e. you just include a CSS file and add a class to the label
* show which browsers are supported, including touchscreens
And possibly a feature request: can you animate as an event? For example, I might want to draw attention to a radio element without checking it.
$('.focus').prop('checked', true);
$('.focus').addClass('bounce');
Just: .my-class{ animation: boing 2s etc...}
* making it more obvious that it's a CSS-only solution (which is a very good thing)
* showing how to add them - i.e. you just include a CSS file and add a class to the label
* show which browsers are supported, including touchscreens
And possibly a feature request: can you animate as an event? For example, I might want to draw attention to a radio element without checking it.