Check out my latest project: JSBin - live JavaScript pastebin

Archive for the "namespace" Tag

JavaScript namespaces

Based on the Prototype namespacing made easy, except this doesn't require Prototype. String.prototype.namespace = function(separator) { var ns = this.split(separator || '.'), p = window, i; for (i = 0; i < ns.length; i++) { p = p[ns[i]] = p[ns[i]] || {}; } }; This isn't so much to ditch Prototype, [...]