Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

149
votes
15answers
68k views

Javascript Namespace Declaration

What neat ways do you use for declaring JavaScript namespaces. I've come across this one: if (Foo == null || typeof(Foo) != "object") { var Foo = new Object();} Is there a more elegant or succinct ...
10
votes
2answers
706 views

How do you write DRY, modular coffeescript with Sprockets in Rails 3.1?

I'm in the early stages of trying to write some sensible Javascript. I want to namespace basically everything under the name of my application to avoid globals as much as possible, but still give me a ...
9
votes
2answers
142 views

Dynamic JavaScript Namespacing

Is it possible to namespace a JavaScript file inserted dynamically? I know that I can dynamically include a JavaScript file by creating a script tag and insert it into the DOM, but can this included ...
7
votes
4answers
130 views

What is meant by 'JavaScript Namespacing'? [closed]

Possible Duplicate: Javascript Namespacing Im pretty new to JavaScript and was wondering if anyone could give me a good description of what is meant by JavaScript Namespacing? Also any ...
4
votes
3answers
180 views

Javascript: How to clear a non-global (closured) setTimeout?

I'm trying to be a good citizen and keep as much out of the global scope as possible. Is there a way to access setTimeout variables that are not in the global scope? So that, in this example how ...
2
votes
3answers
108 views

Javascript Namespace - Multiple Levels

I'm currently doing the following to give my javascript code a namespace: (function(foo, $, undefined) { // function: showNoteDialog foo.showNoteDialog = function() { // ... } ...
2
votes
3answers
148 views

Problems with “this” in JavaScript namespaces and event listeners

First of all, I'm attempting to use faux namespaces in my JavaScript program like so: // Ish.Com namespace declaration var Ish = Ish || {}; Ish.Com = Ish.Com || {}; // begin Ish.Com.View namespace ...
1
vote
2answers
23 views

jQuery Limit Global Namespace

Currently I have all my JavaScript functions in a single function so the I don't pollute the global namespace. e.g. var App = function() { function a() { } return {}; }(); Now I ...
1
vote
2answers
60 views

how to pass variable to Javascript Namespace

I have created a Javascript namespace like so: var MyApp = function() { return { someFunction : function(x) {} alert(MyApp.y); } }(); This allows me to do this: ...
1
vote
2answers
121 views

js singleton - how to avoid accessing class members via the namespace

I'm trying to improve my Javascript coding style and have been reading that it's good to namespace stuff. However I can't seem to use the "this" keyword everywhere that I would like to - instead I ...
1
vote
2answers
121 views

Extending JavaScript namespace

Am I doing something wrong or is this just not possible: (function(namespace,undefined) { //Private properties and methods var foo="bar"; function test(){return foo;} //Public ...
1
vote
2answers
80 views

Javascript converting to namespace and calling functions

I'm a typical web dev that's used global for everything in JS. I've now seen the light and want to convert to namespaces. So on my current project I have a page that has three JS functions (all global ...
1
vote
4answers
135 views

Preferred technique for javascript namespacing

My code is going to turn into a mess if I don't start using some sort of namespacing technique. I'm relatively new to programming large javascript projects but have significant experience with ...
1
vote
2answers
178 views

jQuery plugin looping through siblings

I'm new to writing jQuery plug-ins so I'm a little unsure how to do this. The plug-in is to display labels as tips inside text and password inputs. It's kind of simple - on element focus, the label ...
1
vote
1answer
1k views

How do I use backbone.js with namespaces?

I have been trying to get namespaces to work with backbone.js for the last hour or so. I have read: Javascript Namespace Declaration And I tried all approaches. Here is the problem: ...
1
vote
1answer
148 views

accessing my public methods from within my namespace

I am in the process of making my own namespace in JavaScript... (function(window){ (function(){ var myNamespace = { somePublicMethod: function(){ }, ...
0
votes
0answers
47 views

Titanium namespaces (preventing acces nested namespaces functions)

I have my project defined almost the same as this one: https://github.com/krawaller/Struct/tree/master/Resources But the problem I'm having is that I can still access objects from S on any depth. I ...
0
votes
4answers
89 views

Namespaces tree javascript example and explanation of syntax

Namespaces tree javascript example and explanation of syntax. This namespaces to be defined in javascript: root root.person root.home root.home.relative my try that wrong: var root=''; ...
0
votes
2answers
100 views

NameSpaces in Javascript - Using it for Two diff JS files

I've two different JS files in one folder. I gave a namespace to first JS file var fooMYNS = {}; and declared some variables using that namespace fooMYNS.newAr = new Array();. Now i pushed some ...
0
votes
2answers
114 views

Is it bad practice to assign a global shortcut variable to a global namespace (object literal)?

I have a little quandary over whether it is good practice to do the following. I have a global object literal or namespace that I use to contain base functions and variables. Within this I have a ...
0
votes
2answers
915 views

Javascript Namespace - Is this a good pattern?

Objectives... Remove vars, objects etc from the global object. Remove possibility of collisions. Firstly I implement the Yahoo namespace code (note for example purposes I am using ROOT as the root ...