2
votes
On - window.location.hash - change?
As a side note, the current HTML5 draft specifies a hashchange event …
2
votes
Class method can’t access properties
JavaScript doesn't actually have classes. MyClass is the constructor for an object whose prototype is the object MyClass.prototype.
The this keyword …
1
vote
What is the difference between this.click() and $(this).click() ?
this.click() calls the browser DOM method click().
$(this).c …
