What\'s the difference between classic Javascript code:
document.getElementById(\'theID\')
and the jQuery version:
$(\'#the
Make sure to include
In your
If you don't load jQuery then you cannot use $ as jQuery is an external library and not part of JavaScript.
jQuery
$