Tagged Questions
60
votes
6answers
42k 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 ...
26
votes
7answers
30k 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?
8
votes
3answers
2k 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 ...
7
votes
3answers
473 views
Safely parsing a JSON string with unquoted keys
json2.js is strict requiring all object keys be double-quoted. However, in Javascript syntax {"foo":"bar"} is equivalent to {foo:"bar"}.
I have a textarea that accepts JSON input from the user and ...
7
votes
3answers
1k views
Is this Javascript object literal key restriction strictly due to parsing?
Please refer to the code below, when I "comment in" either of the commented out lines, it causes the error (in IE) of "':' expected". So then is my conclusion correct, that this inability to provide ...
7
votes
4answers
472 views
Why are some object-literal properties quoted and others not?
I see this all the time: object literals declared such that some keys are surrounded with quotes and others are not. An example from jQuery 1.4.2:
jQuery.props = {
"for": "htmlFor",
"class": ...
7
votes
2answers
2k 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 ...
7
votes
9answers
648 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 ...
5
votes
4answers
6k views
Javascript: How to create an array of object literals in a loop
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 loop ...
5
votes
5answers
1k 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 ...
4
votes
2answers
109 views
Javascript array/object syntax fail
Why do I get this error with this code: Uncaught SyntaxError: Unexpected token { on line 1.
var cube_points = {
{'x' : 100, 'y' : 100, 'z' : 100},
{'x' : 100, 'y' : 100, 'z' : -100},
{'x' ...
4
votes
3answers
478 views
Self-references in object literal declarations
Is there any way to get something like the following to work in JavaScript?
var foo = {
a: 5,
b: 6,
c: this.a + this.b // Doesn't work
};
In the current form, this code obviously ...
4
votes
2answers
360 views
Javascript data structure for fast lookup and ordered looping?
is there a data structure or a pattern in Javascript that can be used for both fast lookup (by key, as with associative arrays) and for ordered looping?
Right, now I am using object literals to store ...
3
votes
4answers
207 views
How to access an outer member from a nested object literal?
In the following code, can the x member be accessed from the nested object literal?
var outer = {
x : 0,
inner: {
a : x + 1, // 'x' is undefined.
b : outer.x + 1, // ...
3
votes
2answers
92 views
Why does my “next” property disappear in my JavaScript hash in Firefox 3.6
I'm creating a hash as an options object to pass to a jQuery plugin. One of the keys I need to use, as defined by the plugin, is next.
This works fine in Safari (so I assume Webkit in general) but ...
3
votes
3answers
1k views
Calling a function in javascript object literal notation declaration
I'm trying to call a function within an object literal that I created, using the this keyword. But an error shows up saying this.doTheMove() is not a function:
window.onload = function(){
var ...
3
votes
2answers
3k views
JavaScript object literal length === undefined?
I am working on this animation function but I have a problem. I can't seem to perform what should be an easy task, I can not get the length of an object. If you check out that jsFiddle you can see ...
3
votes
3answers
340 views
Javascript object literal: why can't I do this?
I have the following (simplified) object literal. The icons method uses closure to hide the icons variable, which I'd like to have as an associative array for later lookups.
var MapListings = {
...
3
votes
2answers
2k views
Dynamic object literal in javascript?
Is it possible to creat an object literal on the fly?
Like this:
var arr = [ 'one', 'two', 'three' ];
var literal = {};
for(var i=0;i<arr.length;i++)
{
// some literal push method here!
...
3
votes
3answers
2k 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*/ ]
},
...
2
votes
3answers
68 views
Private var inside Javascript literal object
How can I declare a private var inside a literal object? Becasuse I've this code:
var foo = {
self: null,
init: function() {
self = this;
self.doStuff();
},
...
2
votes
3answers
96 views
Can a Javascript literal object fire events?
I have a Javascript object literal:
var Toolbar = {
init: function(toolbar) {
this.Bar = $(toolbar); // scope is Toolbar object literal
...
2
votes
2answers
42 views
Referring to previously defined properties within an object literal
When using object constructors, properties can be directly assigned to the value of previously defined properties:
var foo = new (function() {
this.bar = 5;
this.baz = this.bar;
})();
...
2
votes
4answers
104 views
Stuck on a simple object literal scope / referencing issue
Here's a sample of my structure:
this.is.a.really.long.namespace = {
inputs : {},
buttons : {},
panels : {},
fn : {
abc : function() {},
def : function() {}
}
...
2
votes
4answers
118 views
dynamic keys for object literals in Javascript
Ok so I'm working away on a project in Nodes, and I've come across a small problem with the keys in object literals, I have the following set-up:
var required = {
directories : {
...
2
votes
2answers
188 views
How to Sort a JS Object Literal?
If I have this JS object literal:
var foo = {
Sussy: 4,
Billy: 5,
Jimmy: 2,
Sally: 1
};
How can I create a new, sorted object literal:
var bar = {
Sally: 1,
Jimmy: 2,
...
2
votes
4answers
207 views
Javascript, can I pass a reference to a current object to function within an object literal definition?
Good Morning,
I have a function that takes an options hash as it's parameter, can I call that function inside an object literal definition? Like this
function dataCallback(opts) {
var ...
2
votes
1answer
239 views
Issues creating object literal using anonymous types in c#
I'm trying to build the c# approximation of a JavaScript object literal to be passed to a view model in asp.net MVC:
var obj = new dynamic[]{
new { name: "Id", index: "Id", width: 40, align: ...
2
votes
1answer
171 views
javascript object literal, value/no value?
I am using
console.log(p);
console.log(p.datestrshow);
However the output in the console is
Why is it undefined when it is clearly not?
doing
for(i in p)
console.log(i+': ', (typeof p[i] ...
2
votes
3answers
247 views
reference variable in object literal?
say I have
myfunc({
var1: 1,
var2: 2,
})
if i want to have a value that makes use of the current unnamed object, how would I do this?
eg if I wanted
myfunc({
var1: 1,
var2: 2,
var3: ...
2
votes
1answer
142 views
Help adding new property to object literal
Why is this returning:
tracker.paramsToTrack is undefined
var tracker = {};
var paramsToTrack = ['a', 'b', 'c', 'd', 'e'];
for (p in paramsToTrack)
{
if(params[paramsToTrack[p]])
{
...
2
votes
3answers
643 views
Javascript object literal: value initialization?
i was using object literal to create an object with methods.
Here a simple example.
var SizeManager = {
width : 800,
height : 600,
ratio : this.width / this.height,
resize : function ...
1
vote
3answers
28 views
JavaScript Object literal method: Recursive call
Is it possible to call recursively a method from an object literal?
For example:
(function () {
'use strict';
var abc = ['A', 'B', 'C'],
obj = {
f: function () {
...
1
vote
2answers
35 views
What is the value after the comma in a JavaScript array literal definition?
I have been watching a video of a conference (See: Good JavaScript Habits for C# Developers at 13:23 in the video). The presenter has been discussing best practices in JavaScript. One of the tips he ...
1
vote
2answers
39 views
Call functions from function inside an object (object literal)
I'm learning to use object literals in JS, and I'm trying to get a function inside an object to run by calling it through another function in the same object. Why isn't the function "run" running when ...
1
vote
1answer
68 views
Reference nested 'sibling'-property in object literal
I want to reference a nested property in an object literal from within another property in that same object literal.
Consider the following contrived example:
var obj = {
product1: {
...
1
vote
2answers
47 views
Is it possible to loop through an object, and get the key names ($key => $value)?
In PHP, we can loop through an associative array, and get the values of both the key and the value like this:
$myArray = array(
'key1' => 'value1',
'key2' => 'value2'
);
...
1
vote
1answer
46 views
How to access content in an object literal?
Can someone tell me what the best way is to store content in an object literal and how to access it using my JS pattern? I can't seem to get it to work.
Namespace.object = {
var data = [{"myid1" ...
1
vote
2answers
130 views
Benefits of using object literal notation in an object constructor?
I'm trying to understand the finer points of JS and am seeing many examples of object literals being passed into constructors. What are the benefits of this approach and how would I create my object ...
1
vote
2answers
154 views
Sort array of objects
I have an array of object literals like this:
var myArr = [];
myArr[0] = {
'score': 4,
'name': 'foo'
}
myArr[1] = {
'score': 1,
'name': 'bar'
}
myArr[2] = {
'score': 3,
'name': ...
1
vote
4answers
189 views
private variables in object literals?
is there anyway we can create a "singleton/static class" with private variables?
I had an attempt and this is what i had:
var TheStaticClass = new (function () {
var a=1;
...
1
vote
5answers
210 views
In javascript, when to use object literal and when to use array?
Here's a sample. My concern is both seem to do the job. which of them to prefer?
var fooArr = [{ "bar": {"blah": 9 } }];
for(var i in fooArr) {
var value = fooArr[i].bar.blah;
...
1
vote
3answers
265 views
Setting object literal property value via asynchronous callback.
I'm creating a self-contained javascript utility object that detects advanced browser features. Ideally, my object would look something like this:
Support = {
borderRadius : false, // values ...
1
vote
1answer
57 views
Object Literal in Firefox extension
I have an extension that needs to pop up a window and then close it.
var my_extension = {
window: null,
popup: function(){
my_extension.window = window.open(...)
},
close: ...
1
vote
2answers
229 views
Javascript Object Literals and jQuery
I've updated the script here to give a better example. For $header I've got an anonymous function now returning $("#header"). Although this works I'm sure its not efficient as it calls $header every ...
1
vote
1answer
586 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>
...
0
votes
2answers
28 views
Getting data from object literal
I have an object literal where I can set a persons name. In another .js-file I have an object where I instantiates the Person-object, and with the function "getName" i want to assign a persons name to ...
0
votes
3answers
45 views
Update/Create object properties dynamically
I'm creating a feature that provides a get() and set() function to read and update values from a JavaScript object. The trick is that I'm using a dot notated string to specify the properties.
I've ...
0
votes
2answers
98 views
Convert Javascript 'new object' to literal notation
I'm using Aptana Studio 3 to code Javascript OOP, i'm creating class and objects using the 'new' and 'this', but is really annoying because none IDE autocomplete doesn't recognize my objects ...
0
votes
2answers
46 views
what is wrong with this jquery code
Hi I am using following code for applying multiple attributes of css through jquery. My code is
$("div:contains('Awais')").css( {text-decoration : 'underline', cursor : 'pointer'} );
I get ...