I am looking at some javascript that uses jQuery and see things like this
this.dropdownController.setWidth(this.$field.innerWidth());
But I am not sure whether $field
is something special or just a custom-defined object somewhere in the scripts.
Does $field
have a special meaning?
$field
is nothing more than a property defined onthis
. It has nothing to do with jQuery. If it's something special, it's going to be related to whateverthis
is.