0
votes
1answer
34 views
JQuery callback question
Hi,
I'm trying to assign a different number to different callback functions in jquery.
for (i=o;i<types.length;i++) {
…
2
votes
6answers
97 views
JavaScript context
var User = {
Name: "Some Name", Age: 26,
Show: function() { alert("Age= "+this.Age)};
};
function Test(fn) {
fn();
}
Test(User.Show);
===============
Alert shown by code is …
1
vote
6answers
120 views
static - used only for limiting scope?
Is the static keyword in C used only for limiting the scope of a variable to a single file?
I need to know if I understood this right. Please assume the following 3 files,
file1.c
int a;
file2.c
…
0
votes
0answers
31 views
Why do you have to explicitly specify scope with friendly_id?
I'm using the friendly_id gem. I also have my routes nested:
# config/routes.rb
map.resources :users do |user|
user.resources :events
end
So I have URLs like /users/nfm/events/birthday-2009.
In …
0
votes
4answers
58 views
Closure/scope JavaScript/jQuery
Hello all,
I'm trying to group some exisiting top-level functions inside a
closure (to avoid polluting the global namespace) but I'm not quite
getting it to work.
First, all the JS works outside my …
0
votes
5answers
52 views
Issue with scope and closures in JavaScript
My question is really more about scope in JavaScript, rather then closures.
Let's take the following code:
var f = function () {
var n = 0;
return function () {
return n++;
};
}();
…
1
vote
3answers
57 views
PHP Variable Scope
Is there a way to declare a variable so it is available in all functions. Basically I want to call: Global $varName; automatically for every function. And no, I can't use a constant.
I don't think …
0
votes
4answers
112 views
[C++] Enum declaration inside a scope that is a parameter of a macro.
Hi,
I am trying to create a macro that takes a scope as a parameter.
I know, it is probably not a good thing etc etc.
I was trying this and got the problem that preprocessor looks for commas and …
2
votes
2answers
70 views
Python nested classes scope
Im trying to understand scope in nested classes in python. Here is my example code :
class OuterClass:
outer_var = 1
class InnerClass:
inner_var = outer_var
The creation of …
0
votes
2answers
80 views
Why is ‘this’ not updating to refer to a new object?
I'm writing an online game which allows a user to progress from one puzzle to the next, and if the user makes mistakes, each puzzle has a start again button to allow the user to start just that puzzle …
2
votes
7answers
88 views
Python functions can be given new attributes from outside the scope?
I didn't know you could do this:
def tom():
print "tom's locals: ", locals()
def dick(z):
print "z.__name__ = ", z.__name__
z.guest = "Harry"
print "z.guest = ", z.guest
print …
2
votes
3answers
67 views
C-style Variable initialization in PHP
Is there such a thing as local, private, static and public variables in PHP? If so, can you give samples of each and how their scope is demonstrated inside and outside the class and inside functions?
3
votes
3answers
68 views
Spring: Singleton/session scopes and concurrency
Does singleton/session scopes of Spring beans require that access to all its fields must be synchronized? Say through "synchronized" keyword or using some classes from package "java.util.concurrent".
…
2
votes
4answers
61 views
Scope with a self-invoking function in Javascript
Take below code iterates over 6 input buttons and attaches an onclick event to every button that alerts the index number of the respective iteration:
for (var i = 1; i < 6; ++i) {
var but = …
1
vote
4answers
84 views
Variables set during $.getJSON function only accessible within function
This may be more of a scoping question. I'm trying to set a JSON object within a $.getJSON function, but I need to be able to use that object outside of the callback.
var jsonIssues = {}; // declare …
