Tagged Questions

0
votes
1answer
50 views

Why can’t I save an object’s methods as properties of another object literal

The code below is used to note some methods to run in particular circumstances so they can be called using a simpler syntax. var callbacks = {alter: SPZ.sequenceEditor.saveAndLoadPuzzle, …
0
votes
2answers
29 views

in javascript is it possible to construct an object literal with expressions evaluating to strings for property names?

i.e. is it possible to do this: var fruit = "banana"; var x = { "app" + "le" : 5, // "apple" : 5 function(){return "orange"} : 8, // "orange" : 8 "" + fruit : 3 // "banana" : 3 };
3
votes
3answers
159 views

JavaScript - Advantages of object literal

I've read that rather than simply writing a bunch of functions, I should use object literal. Can someone explain what the advantages of object literal are with examples, because I don't understand …
3
votes
2answers
74 views

adding prototype to object literal

STORE = { item : function() { } }; STORE.item.prototype.add = function() { alert('test 123'); }; STORE.item.add(); Been trying to figure out what's wrong with this quite a while. Why doesn't …
4
votes
5answers
456 views

How to determine if an object is an object literal in Javascript?

Is there any way to determine in Javascript if an object was created using object-literal notation or using a constructor method? It seems to me that you just access it's parent object, but if the …
1
vote
3answers
199 views

How to add private variable to this Javascript object literal snippet?

Found this at MDC but how if I'd wanted to add a private variable to the var dataset = { tables:{ customers:{ cols:[ /*here*/ ], rows:[ /*here*/ ] }, orders:{ …
0
votes
4answers
278 views

Javascript: How to create an array of object literals in a loop

Hi, I need to create an array of object literals like this: var myColumnDefs = [ {key:"label", sortable:true, resizeable:true}, {key:"notes", sortable:true,resizeable:true},...... In a …
0
votes
7answers
642 views

How can I add a key/value pair to a JavaScript object literal?

Here is my object literal: var obj = {key1: value1, key2: value2}; How can I add {key3: value3} to the object?
1
vote
0answers
213 views

Using the object literal notation with jQuery

Hi, the other day I read this article by Alan Storm called "Using jQuery and the Object Literal Singleton/Module Pattern". Now I'm wondering if any of you are writing jQuery code using the object …
2
votes
4answers
1k views

How to Loop through JavaScript object literal with objects as members?

How can I loop through all members in a JavaScript object including values that are objects. For example, how could I loop through this (accessing the "your_name" and "your_message" for each)? var …
0
votes
4answers
589 views

Object literal + document.body.onclick not doing what I expect

ok, people here is my amazing antigravity library. I'm trying to define it as an object literal, which, uh, i read all the cool kids are doing in order to to encapsulate their libraries. Basic tests …
1
vote
1answer
219 views

Send Object to remote javascript file

So if i am setting up a yahoo pipes badge on my site, yahoo gives me this code <script src="http://pipes.yahoo.com/js/listbadge.js">{"pipe_id":"USER_ID","_btype":"list"}</script> …
5
votes
9answers
474 views

Simple JavaScript question: what is this thing?

var something = { wtf: null, omg: null }; My JavaScript knowledge is still horribly patchy since I last programmed with it, but I think I've relearned most of it now. Except for this. I don't …