[jQuery] Aliasing/Redefining "function"

[jQuery] Aliasing/Redefining "function"


In my environment, JS has a maximum file size as a matter of company
policy - jQuery is obviously a great help with this. One of the
things I'd like to do (primarily to shrink filesize but also for less
typing) is instead of writing this:
$(function(){...});
to be able to write this:
$(f(){...});
Basically, I want to shorten the name of the "[F|f]unction" object to
just "f". Does anyone know how this could be done?