The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
80 views

Reusing a knockout.js viewModel without using global variables

I have a page with different knockout generated content. I have a right menu with data that should load new data in the middle of the page depending the row chosen in the right menu. So, I can fetch ...
0
votes
1answer
37 views

rewrite and add to my namespace a javascript library

I opened a javascript project called Jibberish (https://github.com/mdp/gibberish-aes) and I tried to understand it's coding style, I just give a portion of it's start and end: (function (root, ...
1
vote
1answer
48 views

Calling a namespaced function by its fully qualified name from inside same namespace

Is there any reason you would ever want to call a function defined inside a namespace created using the revealing module pattern using its fully qualified name? For example, A vs. B below? Example A. ...
1
vote
1answer
30 views

Convert namespace to string

I use the revealing module pattern, and have a namespace Foo.Bar.Baz. How do I convert that to a string "Foo.Bar.Baz"? (If I do mynamespace.toString() it yields "[object Object]" rather than the ...
0
votes
2answers
56 views

Why when javascript namespacing do we say var myName = myName || {} [duplicate]

I cannot find the reason behind this format? I assume it is to check if this variable has been created before and if so, to take that one rather than the blank object. But I cannot think HOW or ...
1
vote
1answer
57 views

Ember.js Namespace Issues

I have an Ember.js application I have been developing and which has been working great. I am now attempting to integrate in a SIP over Websockets library called JsSIP. Both my Ember app and a ...
0
votes
1answer
44 views

Can we add the same namespace for two javascript files?

I am trying to put all my javascript function in one namespace. I have two javascript files and i am trying to put all the functions both the files into one namespace. So when i define the same ...
0
votes
1answer
39 views

Not able to call a function in a namespace from the html file

I have two javascript file which has some fucntions within a name space. But when i try to invoke this function from my main page it is throwing an error telling "Object # has no method ...
0
votes
2answers
30 views

inheritance namespace javascript

How can I inherit an objects variables within namespace(scope)? var f2 = { a: 'test' } f2.history = { load: function(){ alert(this.a); } } // Turns out Undefined f2.history.load();
0
votes
4answers
71 views

Inheritance in nested namespaces in JavaScript

I want to setup nested namespaces to organize my code. I am trying to follow the plugin-like structure described in this article. The problem is I don't understand how to access this.error_msg in my ...
2
votes
3answers
53 views

Calling a Javascript function from a hash value with namespaces

I currently have this code to call a function from a hash value on page load: $(function() { var hash = window.location.hash.substring(1); window[hash](); }); This works great. However, my ...
0
votes
3answers
70 views

How to append to a JavaScript namespace created from a closure?

I have a namespace in the following format allowing for public and private members: function A() { return('a'); } namespace1 = (function () { // private namespace2 = (function() { ...
0
votes
1answer
38 views

How asign value to a namespace object variable if it is get it inside a jquery on click definition

I want to know how can I save a value inside a jquery bind when this is inside a namespace. var obj = obj || (obj ={ valuetosave:-1, init:function(){ $("some ...
1
vote
3answers
43 views

How to allow the end user to define multiple namespace-extension levels for this pattern?

Take this code for example: (function(foo) { foo.init = function() {}; // other public/private methods here. return foo; }(window.FOO = window.FOO || {})); I call it like so: ...
0
votes
1answer
79 views

Javascript namespacing - how to export functions and variables defined within a function scope based on their naming?

With the code below, other than specifying manually, is there a way to export only the functions and variables whose name doesn't start with an underscore? var myapp = myapp || {}; myapp.utils = ...
3
votes
2answers
1k views

Using Bootstrap & Fancybox in a single project

I am using Bootstrap and Fancybox within a single project, including it like this: <script src="http://code.jquery.com/jquery-latest.js"></script> <script ...
0
votes
2answers
66 views

Why don't jQuery selector variables work within namespaces? [closed]

I am stumped on why this is not working. I'm looking to having more than one variable declared. What am I doing wrong? var message = (function ($) { var $modalBody = $('.modal-body'), ...
3
votes
1answer
131 views

jquery namespace: how to pass default options from one method to the subsequence methods?

How can I pass the default options from one method to the subsequence methods? For instance, I have some default setting in the init method. and I want to use these settings for other methods such ...
0
votes
1answer
61 views

Using lazy initialisation with namespaces in Javascript

I'm running into a couple issues with JavaScript, namespaces and minification/concatenation. I have no control (at least I don't want to have any) over in which order the files get concatenated. Using ...
5
votes
4answers
475 views

Javascript namespacing with RequireJS, why?

I'm currently facing this argument about namespaces on javascript and I need a community opinion. The scenario: The architect in charge of this project somehow is devoted to RequireJS and really ...
0
votes
1answer
78 views

Knockout validation & namespacing

I'm having trouble combining namespacing with knockout validation. This breaks the validation: myNameSpace = { viewModel: { name: ko.observable().extend({ digit: { digit: true, message: ...
3
votes
1answer
88 views

Javascript namespaces that use ||

I've seen namespaces in JavaScript defined as: var AppSpace = AppSpace || {}; and/or var namespace = {}; Can anyone tell me: What's the difference? What's || used for in the first example? ...
0
votes
1answer
99 views

“Too much recursion” when using recursive function from within a namespace

I'm using a recursive method in javascript which worked perfectly fine, until I put it in a namespace. The function returns an element which has the given quoteproduct id as it's id attribute from an ...
1
vote
1answer
244 views

jQuery Plugin Authoring and Namespacing

I'm used to writing plugins like so: ;(function($){jQuery.fn.myPlugin=function(options){ var defaults={ 'property':value }, o=$.extend({},defaults,options||{}); // INSERT AND ...
1
vote
4answers
118 views

Accesing a javascript object defined in a subnamespace and the js file being imported into the HTML

how to access an object in the namespace. 1) i have a html which imports script files one script defines the namesapce app and the other script attaches a object to it how do i access the object ...
0
votes
2answers
95 views

IIFE jquery ready

I am working on a web project that has a large amount of javascript and we started hitting namespace collisions because we were adding everything to "$.". I read up about namespacing and found the ...
2
votes
1answer
61 views

how can i use a namespace string with jquery?

I have the following code example... $.pg = { width : 700, height: 200, rate: 30 }; Is there a convenient way I can write $.pg[width], rather than $.pg['width'] all the time to get 700? The ...
0
votes
1answer
206 views

Javascript object/namespaces - how to access properties added from nested functions (example included)

I've been working on understanding Javascript objects and namespaces and I am a little confused by how we can generate/display object using nested functions. I don't understand how I can nest ...
5
votes
2answers
439 views

How to set up JavaScript namespace and classes properly?

It seems there are so many ways to set up a JavaScript application so it is confusing as to which one is correct or best. Are there any difference to the below techniques or a better way of doing ...
0
votes
0answers
69 views

Javascript Sub Module Method

I recently started at an environment where the sub module method of JS programming is used exclusively throughout the application. Coming from the wild west of advertising however, I am having a hard ...
1
vote
1answer
134 views

What’s the difference between the JavaScript module pattern and its alternatives?

What's, practically speaking, the difference between the following 2 patterns? A mySpace = mySpace || {} mySpace.isObsolete = function() {}; mySpace.hipsterYear = 2006; usage: var iable = ...
2
votes
3answers
172 views

Sharing variables in JavaScript Namespace

My Goal: To namespace my javascript to keep the global namespace clean. My question: how do I share variables between methods in my JavaScript namespace? In my example I am extending and ...
0
votes
0answers
209 views

cross-platform javascript namespacing

I'm trying to write a javascript module that I can load: normally in a browser (script tag) in a browser using requirejs (AMD) in node.js I got it almost right I believe, but I'm not sure the way ...
3
votes
3answers
440 views

Namespacing pattern causes JSLint 'function was used before it's defined' error

I am using the following namespacing pattern: var MyNamespace = new function () { var foo = function () { bar(); }; var bar = function () { alert("bar"); }; ...
0
votes
1answer
375 views

backbone.js model is not a costructor into router

I have a problem with a backbone.js namespacing app demo, i'm trying to display a simple list of element stored locally, when i call the app the console retrieves this error App.model.club is not a ...
0
votes
1answer
604 views

Namespace issue when calling function in one .js file from another .js file

In an attempt to make a swipe-able slideshow for many images, I am attempting to stitch together two plugins, Swipe.js and lazyloader.js. I want to have the slideshow timer event from the Swipe plugin ...
1
vote
3answers
843 views

How to span javascript namespace across multiple files?

I have ignored javascript forever. I started using jQuery a few years back so I could get by. But as I've started doing TDD more I decided yesterday to really dive into javascript (and possibly ...
3
votes
2answers
362 views

OOP, private functions inside a top level method of the namespace

I have a js script which declares a namespace, then has a method called run() which I can call from inside a XUL script like myNamespace.run(): var myNamespace = { run: function() { var ...
0
votes
2answers
355 views

Detect when list of scripts are all loaded in javascript (Using namespaces).

I have made a namespaces framework for javascript. I am loading some plugins (.js files) which are dynamically added to the HTML. I am going to try to simplify the code. This function is used to ...
1
vote
1answer
285 views

Best Practice in Rails 3.2: Attach javascript functions to window object?

I have a rails application where a lot of views are rendered in javascript (i.e. rendered from remote actions). After rails compiles my coffee script files into javascript I am finding that, due to ...
1
vote
3answers
383 views

How can I create an empty namespace object without overwriting another object with the same name?

I have been studying as much as I can about the Module Pattern suggested by the Yahoo YUI Blog. I've noticed that the YUI offers the ability to create a new empty namespace object without overwriting ...
1
vote
2answers
150 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 ...
0
votes
0answers
115 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 ...
9
votes
4answers
476 views

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

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 ...
1
vote
2answers
186 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
226 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 ...
2
votes
5answers
572 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() { // ... } ...
1
vote
3answers
659 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 ...
0
votes
4answers
240 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=''; ...
9
votes
2answers
262 views

Namespace a dynamically loaded javascript file's contents

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 ...

1 2