Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== copy prototype ====== This is a function to allow basic inheritance. You can have a parent class, and a descendant class which inherits all prototype components of the parent class. <code javascript> function copyPrototype(descendant, parent) { var sConstructor = parent.toString(); var aMatch = sConstructor.match( /\s*function (.*)\(/ ); if ( aMatch != null ) { descendant.prototype[aMatch[1]] = parent; } for (var m in parent.prototype) { descendant.prototype[m] = parent.prototype[m]; } }; </code> ===== External Links ===== * http://www.sitepoint.com/blogs/2006/01/17/javascript-inheritance/ docs/programming/javascript/copy_prototype.txt Last modified: 2008/08/03 00:25by 127.0.0.1