I am starting to learn jQuery. Looking though the MVC3 project that makes use of Awesome MVC Html helpers, I have stumbled upon a javasript code that I don’t know how to understand yet:
$ae.autocomplete('Requestor'
What is $ae is calling a jQuery autocomplete on in this case? ae isn’t an element, so this isn’t an id or class selector.
P.S. And while you are at it, please let me know what $. as in $.getJSON calls getJSON on?
Assuming that there isn’t a typo,
$aeis a variable. Since$is just a javascript function you can assign the result of it to a variable,$ae = $("#myid"). While I don’t know that $ae is definitely the result of that, the naming convention ($at the beginning) makes me suspect that it is.