I still have three global functions while I'm looking for alternatives in the jQuery world. I'm looking for something that helps extending classes / overriding class members in jQuery or any jQuery plugin/utility. Something like the extend() function in YUI or Ext. Is there any?
You mean like jQuery.extend()? You just pass in two objects and the first one is extended with the second. http://docs.jquery.com/JavaScript#.24.extend.28_target.2C_prop1.2C_propN_.29 --John