Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
;(function($, window, document, undefined) { "use strict"; $.fn.myPlugin = function(options) { const defaults = { color: "red", speed: 400 }; const settings = $.extend({}, defaults, options); return this.each(function() { $(this).css("color", settings.color) .fadeIn(settings.speed); }); }; }(jQuery, window, document));
Result
Open