1
vote
3answers
65 views
JavaScript mechanism for holding onto a value from a user action
I've created a JavaScript object to hold onto a value set by a user checking a checbox in a ColorBox.
I am relatively new to jQuery and programming JavaScript "the right way" and wanted to be sure …
0
votes
3answers
223 views
JavaScript: Convert string to value of predefined variable
I have a JavaScript object that looks like the following:
venue = function(map, dataSet) {
// set some constants
this.VENUE_ID = 0;
this.VENUE_NAME = 1;
this.VENUE_CITY = 2;
…
0
votes
5answers
84 views
Is it possible to use a variable to call an object who’s name is the same as the variables value?
Let's say I have a function which is being passed a string which originally came from getElementById, and I have an object with the same name as that string's value, is there a way to call that …
0
votes
1answer
189 views
GWT JavaScriptObject reading “delete” property
I have the following native method in a extended JavaScriptObject class:
public final native boolean getDelete() /*-{ return this.delete; }-*/;
but this apparently doesn't work as "delete" is an …
