Being a pragmatic coder I tend to miss some obvious things and I wonder,
What’s the difference between
$('loc')
$('#loc')
The more info the better about the ins and outs of #
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
$('loc')is an element selector, looking for<loc>elements.$('#loc')is an#idselector, looking forid="loc"elements.Think CSS when looking at almost all jQuery selectors, they’re very close if not identical in most cases.