Code Monkey home page Code Monkey logo

jquery.boilerplate's Introduction

#jQuery.boilerplate

A simple jQuery plugin boilerplate

##Private vars

+ **instance**: the plugin instance, one per element.
+ **node**: the DOM element.
+ **element**: the jquery element.
+ **settings**: the plugin settings

##Static vars

+ **pluginName**: the name of your plugin. Used in different places in the boilerplate.
+ **plugin**: the plugin object.

##Public methods

###How to call them ?

    $('selector').pluginName('methodName' [, argument…]);

###Are they chainables ?
Yes but, if a method is returning something (!== undefined)
the loop on matched elements will be break, the value will be returned, and the chain will break.

###What happened if a method is called before the plugin was initialized ?
The plugin is initialized with default settings and the function is then called.

###Does the boilerplate has predefined methods ?
Yes, there are four predefined methods :

+ **settings**: return a copy of the settings object.
+ **getText**: return translated text.

##Private methods

###How to call them ?
They are in the plugin scope so you call them like any javascript function.

###Does the boilerplate has predefined private methods ?
Yes, there are two :

+ **init**: directly called on plugin instantiation. You are free to put the code to process on instantiation in it.
+ **getText**: return translated text.

##Translations
The plugin store translations in the plugin.langs object. An option value "lang" is used to defined which language to use for an instance.
You get the translate text using the getText method.

##Events
The plugin now use default jQuery method but store special events name in the plugin.events object.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.