jQuery-Custom-Forms icon indicating copy to clipboard operation
jQuery-Custom-Forms copied to clipboard

A plugin to generate custom forms with accessibility

Results 3 jQuery-Custom-Forms issues
Sort by recently updated
recently updated
newest added

jQuery CDN URL updated as per the ones provided [here.](http://code.jquery.com/)

I had a problem to get input radio post. To resolve it, I modified toggleRadio function. Replace $('input.' + className).attr('checked', false); by $('input.' + className).prop('checked', false); And fakeElement.next('input.' + className).attr('checked',...

Hello ! It seems that when adding the html attr disabled="disabled" to a checkbox input, the input is not getting updated, which is correct, but the plugin keeps toggling the...