0
votes
2answers
30 views
this, current context-when should I use in jQuery?
Hi All,
I am not very sure with the use of "this" [current context] in jquery.What I know is- it prevents the dom from searching all the elements, it just work on that current elem …
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 st …
0
votes
1answer
36 views
a basic javascript class and instance using jquery “$(this)” for XML parser
I am (slowly) writing an XML parser for some "site definition" files that will drive a website. Many of the elements will be parsed in the same manner and I won't necessarily need …
3
votes
5answers
59 views
Is there a difference between using “this” and “prototype” in Javascript here?
Hi,
Is there a difference between the two codes below, I presume not.
function Agent(bIsSecret)
{
if(bIsSecret)
this.isSecret=true;
this.isActive = true;
this.i …
0
votes
2answers
68 views
In javascript, how can I tell what object a function is bound to (ie, its ‘this’) without calling it?
Does anybody know? Couldn't find this question asked before, even though it seems fairly basic.
1
vote
4answers
106 views
Is there a “this” keyword in Ada?
Specifically, is there a way for a task to get a reference to itself?
For example:
task type someTask;
type someTaskAccessor is access someTask;
task body someTask is
poi …
1
vote
2answers
81 views
Speed difference: separate functor VS operator() inside a big class with *this
I'm using the c++ STL heap algorithms, and I wrote a wrapper class around it so I could do some other stuff. When I tried to use the code below, for example:
//! Min-heap wrapper …
1
vote
1answer
26 views
[PHP] Is there an equivalent to $this for static classes? ( kind of super but for the current class where it is used )
I know it wouldn't be exactly equivalent to $this, but is there a way to reference a static class from within itself without using the name of the class itself? ( like super but f …
0
votes
2answers
78 views
Why self::function() and $self->variable or self::$variable even though there is $this->function() and $this->variable (PHP)?
I'm confused about these two keywords and the way to use them in PHP5. I think that "this" is used for instanced objects (not static) while "self" is referring to the object itself …
18
votes
8answers
31k views
jQuery $(this) selector and children?
I'd like to use a selector to select the child img of the div I'm clicking on this example:
<div id="..."><img src="..."></div>
To get t …
4
votes
4answers
90 views
determining $(this) in jquery
A common issue I have is getting confused what $(this) is referring to.
I often will try to give it some odd style:
$(this).css("border","10px solid red")
Which helps sometimes …
2
votes
2answers
121 views
Access protected member of a class in a derived class
Hi ho,
i have an old codebase here, where they used protected member variables. Whether or not this is a good idea can be discussed. However, the code must have compiled fine with …
0
votes
1answer
34 views
What is the this[’’] accessor that shows up in Drools
Just looking for a way to pass parameters into a getter in Drools...
I have noticed in Eclipse Ganymede that intellisense is helpful in determining the getters that can be used to …
2
votes
4answers
201 views
[C++] the “this” pointer inside a class
Hi,
the question is simple...
is there any difference in using this->yourvariable or yourvariable directly for some reason?
I am not finding any problem with that, but I am using …
4
votes
4answers
199 views
The C++ implicit this, and exactly how it is pushed on the stack.
Hi: down to business:
I need to know whether, when a class method in C++ is called, the implicit 'this' pointer is the first argument, or the last. i.e: whether it is pushed onto …
