-
Notifications
You must be signed in to change notification settings - Fork 2
Extend the library functions
Arturo Vasquez edited this page Apr 18, 2021
·
1 revision
To extend the library functions, make a plugin or something like this you should do the following:
genrl.extend({
myfunction:function(options){
//write code below
});
}); genrl.myfunction(options); genrl.fn.extend({
myfunction:function(options){
//write code below
});
}); genrl.fn.myfunction(options);Arturo Vásquez 2022
Search into the pages for more info