Search Results

3
votes

A question about referencing functions in Javascript

Good question. It shouldn't cause any JavaScript problems. Other things to consider: you are potentially exposing your admin capabilities to the world when you do this, which might be usefu …
6
votes

A jQuery question about variables and selectors

A best practice that many people use when they create a variable like this is to name it starting with $, to indicate that it is a jquery object. So you could name the variable $o, and you can dire …