> Did anyone tried to use this plugin with no conflict function? JS
> engine reports syntax error if I try his:
>
> var $j = jQuery.noConflict();
>
> $j.ajaxError(function(event, request, settings){
> $j.blockUI({ message: "Error requesting page: " +
> settings.url});
>
> });
>
> Ayone?
ajaxError is not a function on $j. It's a function on $j.fn. You
invoke it like this:
$j().ajaxError(....)