
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Why jQuery Variables Start with a Dollar Sign
When you will begin working about jQuery, you will get to know about the usage of the $ sign. A $ sign is used to define jQuery.
jQuery variables begin with $ to distinguish them from a standard JavaScript object. Also, it is a convention. jQuery selectors start with the dollar sign and parentheses() − $.
Let's take an Example −
// jQuery object var $phone = $("#myphone"); // dom object var phone_el = $("#myphone").get(1);
Advertisements