blair260
blair260

Reputation: 309

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

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'
},

Upvotes: 5

Views: 3239

Answers (2)

Inferpse
Inferpse

Reputation: 4145

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

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

Upvotes: 7

user3029195
user3029195

Reputation: 19

It's the library, that has been written by service psd2html.com for styling form elements

Upvotes: 1

Related Questions