Popular JavaScript pattern, var Module = (function() { ... })();
0
votes
1answer
21 views
Module Pattern and scope
I'm trying to create encapsulated objects that can be inherited and that possess some public properties. Here's some code:
var MyObject = (function()
{
function myObject()
{
//Public ...
4
votes
1answer
32 views
JS module pattern override function
I have following pattern
BASE = function () {
var that = {};
var number = 10;
that.showNumber = function(){
that.alertNumber();
}
that.alertNumber = function () {
...
2
votes
5answers
53 views
JavaScript Module Pattern(function(){})(); vs block statement
I saw an answer to some question earlier that used my "Weird" example, and I was wondering if there was any benefit to either method.
Some HTML:
<span id="them">Hey</span>
<span ...
0
votes
1answer
42 views
Javascript module pattern: How to inject/create/extend methods/plugin to our own library?
Im new to javascript. Sorry if there is anything wrong with my question.
How to inject/create/extend methods or plugins to our own library?
here is "yourlib.js"
var Yourlib = (function() {
// ...
0
votes
3answers
44 views
Objects literal and 'this' in submodule pattern
Im working in a sub-module pattern code. Want to create sub-modules with objects literals, the problem is this for the objects inside the sub-module is MODULE and not my object literal. Any idea?
var ...
1
vote
1answer
60 views
JavaScript namespace in Module Pattern
I was reading How Good C# Habits can Encourage Bad JavaScript Habits article about creating namespace and modular pattern but I don't understand the reason to use $ and jQuery to create the namespace. ...
1
vote
1answer
39 views
Module pattern & “private attributes”
Ok, so a couple of weeks ago, I learned about the "module pattern" in javascript. All the examples that I found went basically like that :
var module = (function () {
// private variables and ...
1
vote
2answers
53 views
Better JavaScript Organisation and Execution The Unobtrusive Way - Self-Executing Anonymous Func
I'm slowly getting a better understanding of JavaScript but I'm stuck on how best to tackle this particular organization/execution scenario.
I come from a C# background and am used to working with ...
0
votes
2answers
41 views
Module/prototype and multiple instances
I'm trying to get a grip on "OOP" JavaScript techniques, and I began writing a small test application today. Basically, it's a game loop and on each update coordinates are to be increased so that an ...
0
votes
2answers
91 views
Grasping “OOP” JavaScript: module pattern with inheritance
I'm trying to grasp the module pattern with added inheritance. I come from a university background, with mostly Java in my trunk, but I have been working with web techniques for about ten years. I'm ...
1
vote
3answers
33 views
Why can't I use var when declaring sub name spaces?
Why does the following work
var NameSpace = NameSpace || {};
NameSpace.Foo = 2;
But this does not?
var NameSpace = NameSpace || {};
var NameSpace.Foo = 2;
Any insight into the inner workings ...
1
vote
0answers
82 views
Javascript Module Pattern Singleton & Unit Testing
I'm using the standard javascript module pattern as described here. The problem I'm facing is that this method creates a singleton which can't be instantiated. Unit tests share the same state which ...
0
votes
0answers
204 views
Thumbnails Scroll value for custom slider
Got my hands dirty on custom image carousel. Wrote some jquery to make it work but stuck with one issue.
Issue lies when "prev" & "next" links are clicked:
when click "next", if last visible ...
0
votes
1answer
55 views
first time implementing module pattern variable is undefined
here is my code
var s;
var AddEvent = {
settings : {
saveButton : $('#uploadfiles1'),
cancelSpeech : $('.cancelSpeech'),
datePicker : $(".datepicker"),
...
0
votes
0answers
27 views
Call another public method when using constructor pattern
I have this module in BingMap.js
BingMapView = (function () {
bingMap: Microsoft.Maps.Map;
name;
var BingMapView = function (containerName) {
name = containerName;
};
BingMapView.prototype = {
...
1
vote
2answers
82 views
How to get some revealing module code to only run after DOM ready?
We use the revealing module pattern to organise stuff into "namespaces". Some of the initialisation code (for the jQuery Validation plugin) should only be called after document load.
...
0
votes
3answers
107 views
Javascript Module Pattern and jquery Ajax wait issue
I have written a custom js module that basically sends messages and needs to wait for a response in order to continue:
var manageBooking = (function (jQ) {
//decalre private variables
var domain, ...
1
vote
1answer
187 views
How to comment a JS module pattern class using JSDoc3?
That's the way I actually do this but the private methods and propertys are not visable after I generate the Documentation.
have I done something wrong?
Incidentally, everything else works fine. I ...
0
votes
3answers
84 views
jQuery + Module Pattern: When to declare/query elements?
Typically, you don't start querying the DOM until the $(document).ready().
In both of the options below, the Widget is declared (and the elements are queried) outside of the $(document).ready().
Is ...
1
vote
3answers
142 views
Javascript Module pattern - how to reveal all methods?
I have module pattern done like this:
var A = (function(x) {
var methodA = function() { ... }
var methodB = function() { ... }
var methodC = function() { ... }
...
...
return {
...
4
votes
2answers
86 views
Inheritance and module pattern
I'm trying to implement the inheritance with the module pattern in this way:
Parent = function () {
//constructor
(function construct () {
console.log("Parent");
})();
// ...
0
votes
2answers
88 views
Multiple “classes” in same namespace, but in separate files
I have a namespace: Foo.Bar.Baz within which I have the Qux class. These were defined using the revealing module pattern:
Foo.Bar.Baz = (function ($) { // the namespace/module
function Qux() { ...
0
votes
2answers
55 views
Can I use classes with the javascript module pattern?
I have a bunch of "modules" which follow the "JavaScript Module Pattern" as described in this popular article. To my understanding these modules are a way to aggregate various bits of behavior into ...
2
votes
1answer
58 views
Javascript module pattern introduced in TGP deentityify method - why is this pattern necessary?
Crockford introduces a pattern in the deentityify method to create a module. He claims:
The module pattern takes advantage of function scope and close to create relationships that are binding and ...
6
votes
2answers
114 views
Can you minify multiple files into one?
I have my JavaScript code split into few files, all using the module pattern (updating one global variable, say MyApp, with new features and members.
Will it be possible to minify the files into one ...
1
vote
2answers
81 views
jQuery variable scoping using the javascript module pattern
In the code below I assign the gobal variable "myDiv" a jQuery element. But then inside the "test()" function it seems the myDiv variable is declared but not defined. I have to reassign it $('myDiv') ...
1
vote
4answers
54 views
Creating Multiple Instances of a Module
I thought I was starting to understand JavaScript quite well but clearly not. Let me explain my problem with an example. First I have the following module defined:
var Test = function() {
var ...
1
vote
3answers
23 views
What's wrong in this Module snippet?
I want to have private properties in an object. The following code doens't work:
var GameModule = (function(ns){
function Game(ctx) {
var self = this, //use self in callback methods ...
1
vote
3answers
47 views
The meaning of `this` in JS template method pattern
Why does the marked line fail to find protectedACMember?
var Module = (function (ns) {
function AbstractClass() {
this.protectedACMember = "abstract";
...
0
votes
1answer
181 views
Javascript revealing module pattern Noob
I'm starting Addy Osmani's amazing book on javascript design patterns but can't seem to get off the ground. Can anyone tell me what's wrong here with my approach (I'm using Raphael, just for fun.):
...
1
vote
1answer
186 views
Understand jQuery Tutorial Module Pattern example
Considering the last code fragment (reported below) about module pattern published in the Code Organization section of the Learning Center, I'm trying to understand some aspect of the module in the ...
9
votes
3answers
164 views
What is the difference between these three module pattern implementations in JavaScript?
I've seen the following three code blocks as examples of the JavaScript module pattern. What are the differences, and why would I choose one pattern over the other?
Pattern 1
function ...
0
votes
2answers
302 views
JavaScript module pattern vs Constructor with methods defined in constructor
From a single instance and a multiple instance point of view, why would I write all those extra lines of code following the Module Pattern vs just using a standard Constructor with methods and ...
0
votes
1answer
330 views
Different between Module Pattern and Singleton Pattern?
I've seen that in some projects, Module Pattern uses instead of Singleton Pattern and vice versa.
I want to know exactly, what's the different between Module Pattern and Singleton Pattern?
2
votes
2answers
70 views
Instantiate one instance of a module pattern conditionally in javascript
I am trying to expose a module. I wanted to expose only one instance of it to all callers, and I want to wait until the module is called to instantiate it. I tried to do this:
var obj = {};
var ...
1
vote
3answers
293 views
JS Module Pattern = Caching/Better Performance?
I just read this article http://javascriptweblog.wordpress.com/2011/05/31/a-fresh-look-at-javascript-mixins/.
In the section entitled "#4 Adding Caching" it says:
By forming a closure around the ...
0
votes
0answers
96 views
Using Module pattern in Javascript with submodules
Need some suggestions in Javascript Module Pattern.
Our implementation has a workflow kind of approach in login process - Login , Password Reset, Security Questions kind of - I am terming them ...
0
votes
1answer
205 views
RequireJS setting Module variables from outside doesnt take effect
Im having trouble setting variables within a requireJS Define module, it flatout doesnt take effect. I have the following (cutdown) example to illustrate the issue:
Here is the defined module:
...
3
votes
1answer
240 views
re: jQuery; binding global ajax events to non-DOM objects
Basic module question here: I can get the global handlers to work fine if I abandon my module pattern, but this test code doesn't work and I'm having great difficulty figuring out why:
var MyModule = ...
1
vote
1answer
193 views
Define Private field Members and Inheritance in JAVASCRIPT module pattern
I can define private member fields in module pattern using the code below
var myClass = function(){
var private_field1,private_field_2;
var private_func1 = function(){
...
0
votes
2answers
618 views
how to use window.setTimeout with javascript and the module pattern
i have this example:
var myApp = (function() {
var inputClick = function() {
console.log('inputClick');
};
var loadRecentTimeout = function()
{
...
0
votes
2answers
2k views
how to use the javascript module pattern in a real example?
i am trying to get JavaScript Module Pattern. I've seen examples of how it should like, but i don't understand how to use it.
for example, a few things happening here:
$('input#share').on("click", ...
-1
votes
1answer
84 views
MVVM UI Integration Mental Block
ive been "trying" to create a good solid framework to build an enterprise app in the html space (converting a silverlight app).
I love the thought of the MVVM pattern and that makes me feel a little ...
0
votes
0answers
337 views
How to extend easeljs objects with revealing module pattern
Here was my original object which extends the easeljs Container(so I can add stuff to it, and it can add itself to the Stage), which works just how I want it to(no errors).
function SimpleExtend()
{
...
0
votes
1answer
169 views
How to extend event delegation in javascript with module pattern?
I am using module pattern in JavaScript. I have a file say controller.js which handles events. The problem is I want to use sub-modules. But since the events are handled in the controller.js how will ...
0
votes
1answer
151 views
jQuery AJAX cross-module communication(module pattern)
I recently refactored my javascript/jquery application code to use the module pattern.
I have two modules, lets say A and B.
Module B contains a public method(say, Bmethod) that makes a jQuery AJAX ...
0
votes
3answers
191 views
Why doing self execution when implement module pattern in javascript
I am just wondering why self execution code should be needed when implement module pattern in javascript.
Following code is typical module pattern sample :
var app = app || {};
app.model = ...
0
votes
3answers
699 views
javascript module pattern variable scope
I am learning javascript and the module pattern, but I made a mistake in my code and it proved wrong some of the concepts I though were true about this pattern. My basic code is like this:
...
3
votes
2answers
362 views
How can a Javascript module defined with AMD be extended?
First a bit of history, we have an engine which is made up of many javascript files which are essentially modules. These modules return a single class that are assigned to the global scope, although ...
1
vote
3answers
1k views
Javascript Module Pattern and the new keyword
I get the basics of the Module Pattern and its use of a closure to allow for private members, BUT I can't quite swallow why the below code does what it does:
var Calculator = function() {
var ...




