can I call up non-jquery javascript functions inside jquery setup?

can I call up non-jquery javascript functions inside jquery setup?

first off, forgive me if "setup" is not the correct term...I'm referring to this:

  1. $(document).ready(function() {
     
    });

I have a JavaScript tracking code that I place on every web page...but it doesn't track any of the activity used by my jQuery plugins, jQuery AJAX, etc. Things like tabs or form processing that call up different URL's or hashtags that could totally be tracked.

I was able to extract part of the tracking code into a separate JavaScript function that I could assign to onmousedown and onclick events for my links, but was hoping I could just trigger these functions inside my jQuery 'setup' versus in the <a> tags.

is this possible? never tried. thanks!