What\'s the difference between classic Javascript code:
document.getElementById(\'theID\')
and the jQuery version:
$(\'#the
Not quite : If an element with that id is not existing on the page $("#id") will not work and the script will stop document.getElementById("id") will return null