I am trying to debug someone's code and came across this:
$$$.ajax({
url: ajax_url + param,
context: $("#formDialog"),
success: function(data) {
this.html(data);
BindPopupFormEvents(this, title, reload);
}
}, $$$.ajax.PARTAIL_UPDATE, $mainWrapper);
We use the jquery library, but I've never seen a triple dollar sign before, and I don't know what that is ... any suggestions?
EDIT
I found this later:
$$$.fn = $$$.prototype = {
init: function(jQuery, test) {},
CONST: CONST
};
We use only the jquery library, and in most cases we use the dollar sign.
Can you explain in English what the triple dollar sign does, please?
source
share