Difference between revisions of "JQuery plug-in"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Creating plug-ins)
 
(3 intermediate revisions by the same user not shown)
Line 18: Line 18:
  
 
== External links ==
 
== External links ==
 +
 +
=== General ===
  
 
* [http://plugins.jquery.com/ jQuery Plugin Registry] - official download site
 
* [http://plugins.jquery.com/ jQuery Plugin Registry] - official download site
 +
 +
=== Popular plug-ins ===
 +
 +
* [https://plugins.jquery.com/cookie/ Cookie]
 +
 +
=== Creating plug-ins ===
 +
 
* [https://learn.jquery.com/plugins/ Plugins] @ learn.jquery.com
 
* [https://learn.jquery.com/plugins/ Plugins] @ learn.jquery.com
 
* [https://learn.jquery.com/plugins/basic-plugin-creation/ How to Create a Basic Plugin] @ learn.jquery.com
 
* [https://learn.jquery.com/plugins/basic-plugin-creation/ How to Create a Basic Plugin] @ learn.jquery.com
 +
* [https://www.smashingmagazine.com/2011/10/essential-jquery-plugin-patterns/ Essential jQuery Plugin Patterns] - By Addy Osmani
 +
* [http://blog.teamtreehouse.com/writing-your-own-jquery-plugins Writing your own jQuery plugins]
 +
* [https://jqueryboilerplate.com/ jQuery Boilerplate] - "Jump-starting jQuery plugins development"
 +
* [http://stackoverflow.com/questions/1117086/how-to-create-a-jquery-plugin-with-methods How to create a jQuery plugin with methods?] @ Stack Overflow
 +
* [http://www.learningjquery.com/2007/10/a-plugin-development-pattern A Plugin Development Pattern]
 +
* [http://ryanflorence.com/authoring-jquery-plugins-with-object-oriented-javascript/ Authoring jQuery plugins with object-oriented JavaScript]
 +
* [http://stefangabos.ro/jquery/jquery-plugin-boilerplate-oop/ jQuery Plugin Boilerplate, reprise]
 +
 +
  
 
[[Category:jQuery]]
 
[[Category:jQuery]]
 
[[Category:Web design and development]]
 
[[Category:Web design and development]]

Latest revision as of 20:35, 27 August 2016

A jQuery plug-in is a plug-in for jQuery.

Description

A plug-in adds or modifies the features of a computer program or library.

jQuery plug-ins add or modify features of jQuery.

jQuery UI

jQuery UI provides features that are similar to some plugins.

See also

External links

General

Popular plug-ins

Creating plug-ins