What is the JCF library and where can I find documentation on it?

I inherited a site where a previous developer used the "JCF" library to do a lot of custom formatting and styling. I browsed the web for more than an hour and did not find the actual documentation about what the JCF library is and how it is used. I'm not new to jQuery - I have never heard of this plugin.

Does anyone know about this? Sample code below:

jcf = {
// global options
modules: {},
plugins: {},
baseOptions: {
    useNativeDropOnMobileDevices: true,
    unselectableClass:'jcf-unselectable', 
    labelActiveClass:'jcf-label-active',
    labelDisabledClass:'jcf-label-disabled',
    classPrefix: 'jcf-class-',
    hiddenClass:'jcf-hidden',
    focusClass:'jcf-focus',
    wrapperTag: 'div'
},
+5
source share
2 answers

Check out the latest version demo here: http://psd2html.com/jcf

And updated documentation on github: https://github.com/w3co/jcf

+7
source

This is a library written by psd2html.com for style form elements.

+1
source

All Articles