Skip to content

Instantly share code, notes, and snippets.

@11mb
Last active August 29, 2015 14:22
Show Gist options
  • Save 11mb/44abc36321c9bd30f638 to your computer and use it in GitHub Desktop.
Save 11mb/44abc36321c9bd30f638 to your computer and use it in GitHub Desktop.
jquery function skeleton (small)
(function ($) {
$.fn.functienaam = function (settings) {
settings = $.extend({}, settings);
return this.each(
function () {
// hier je code
}
)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment