Tagged Questions
3
votes
2answers
47 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
4answers
119 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() {}
}
...
3
votes
3answers
523 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
353 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
1answer
100 views
JavaScript Object Literal “this” keyword jQuery Callbacks Argument Passing
What am I doing wrong here? I'm super frustrated here. I'm stuck @ when I call Menu.mouseHandler and since it's being passed an argument it seems to lose its value of this?
Code: ...
2
votes
3answers
108 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
...
1
vote
2answers
172 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
238 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
2k 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
3answers
73 views
Why most of the javascript frameworks use object literals
Why most of the javascript frameworks uses object literals instead of constructors or constructors with prototypes?Will it be non standard ,if somebody uses constructors with prototypes in a new ...
0
votes
1answer
57 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
48 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
119 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
340 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
289 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
51 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
182 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 ...