Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the JCF Library and Where Can I find Documentation On It?

Tags:

jquery

forms

I have inherited a site where the previous developer used the "JCF" library to do a lot of custom formatting and styling. I've looked around the web for over and hour and can find no actual documentation on what the JCF library is and how it is used. I'm not new to JQuery at all - I've just never heard of this plugin.

Does anyone know anything about it? Code sample 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'
},
like image 560
blair260 Avatar asked Apr 12 '13 14:04

blair260


1 Answers

Check the newest version's demo here: http://psd2html.com/jcf

And the up-to-date documentation at github: https://github.com/w3co/jcf

like image 161
Inferpse Avatar answered Nov 15 '22 05:11

Inferpse