(function($) {
$.fn.myFunction = function(config) {
var defaults = {
setting1: 'myDiv',
setting2: ''
};
var config = $.extend(defaults, config);
//code here
};
})(jQuery)
$(document).ready(function() {
$.fn.myFunction({
setting1: 'myDiv',
setting2: ''
});
});
This is how I've been using jQuery plugins, but I recently learned it should be used like:
$('#myDiv').myFunction({
setting1: 'myDiv',
setting2: ''
});
1) I take it this allows the usage of $(this) for $('#myDiv')?
2) Is $(document).ready(function() required?
3) Is there anything detrimental about the way I have been using this jQuery function?
4) If $('#myDiv').myFunction() is the proper usage, how would you call the function if it is simply a function to run at document ready - see my usage here: http://stackoverflow.com/a/12316349/1455709. Is this simply an incorrect usage of the function?
thisto refer to $('#myDiv') rather than myFunction as it would by default while executing myFunction. #2:$(document).readyis only required if you want your code to execute when the DOM is loaded. There is a shorthand though:$(yourFunction). – Maros Hluska Sep 18 '12 at 7:31