How can I select an css class in jquery (or javascript), if it looks like this:
.funkyradio input[type="checkbox"]:checked ~ label:before {}
So far I got this:
$('.funkyradio[type=checkbox]').click(function() {
But I do not know how to further approach.