Tagged Questions

3
votes
2answers
32 views

Convert object literal notation to array

I used a literal as a dictionary, but a third party binding tool only takes arrays. This is one way, is there a better one? var arr = []; $.each(objectLiteral, function () { arr.push(this); });
3
votes
3answers
506 views

Elements keeping original values in jQuery objects after PostBack

I am using ASP.NET 3.5 combined with the atrocious UpdatePanel, jQuery.delegate(), and JavaScript object literals. I use jQuery.delegate() to persist the event handlers, which do get triggered after ...
3
votes
3answers
341 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 = { ...
2
votes
3answers
98 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
4answers
105 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() {} } ...
1
vote
2answers
155 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
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
2answers
1k views

Using the object literal notation with jQuery

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 literal ...
0
votes
1answer
34 views

jQuery Create Object Literal Loop

I need to loop through a series of DOM elements and create an object literal with jQuery as seen below. I'm guessing this involves the usage of .each, but I'm a bit stuck on what to do next. '1': ...
0
votes
0answers
43 views

JavasScript Object Literal to jQuery Plugin

Could someone explain how to convert the following structure into a jQuery plugin - as I'm really struggling here. I'm mainly lost with object properties, methods - how can they be converted to a ...
0
votes
2answers
106 views

Push function to front of object literal

I have some html to popup a jQuery UI modal: <a href="my/url" class="popup">Click me</a> With this javascript code: $('.popup').click(function() { var a = this; var dialog = ...
0
votes
3answers
324 views

How to extend JavaScript literal (object) with a new variable?

I have JavaScript variable as a literal: var global = { getTime : function() { var currentDate = new Date(); return currentDate.getTime(); } }; And I wish to extend this ...
0
votes
2answers
263 views

JQuery : Defining elements in the object literal?

I am trying to define all my main variables within an abject called 'globals'. The problem is that when it comes to using a previous element such as 'membersTab' to grab 'faces' I get the error ...
0
votes
1answer
50 views

reversing an object literal?

I have a jQuery plugin where one of the options ('inits') the user can pass in is an array the array can contain any of these values space, tab, enter, comma Now I have an object literal called ...
0
votes
2answers
174 views

jquery using object literal over multiple files

I've seen object literal examples and they look really nice and sensible. What I want to know is if it's possible to use object literal over multiple files, because all the examples I've seen had only ...