I\'m searching for information about that - \"How to create custom (own) JQuery function and how to use it\"
I\'ve searched in Google, but I didn\'t found informatio
For those who are looking for a "custom function" as per the title, it is as simple as:
if(window.$) window.$.customMethod = function() { * your code here * };
This will then work like $.ajax() does
$.ajax()