[jQuery] disabling jQuery in older browsers

[jQuery] disabling jQuery in older browsers


hi all,
because of the code and stylesheets complexity, I have to disable
javaScript entirely in IE 5.5< .
I have a few js files with $(document).ready(function() in them. my
current solution is to put the following lines right in the begining
of the function:
    // IE 5.5 and lesser aren't supported
    if ($.browser.msie && $.browser.version < 6) {
        return false;
    }
is there any possibility to do in a global way? something like
jQuery.disable or jQuery.ignoreAll?
what is the best practice for this kind of gracefull degradation in
jQuery?