As we know, jQuery uses $ as an alias for the jQuery.
Are there others signs available that i can use for my own Javascript-Framework?
As we know, jQuery uses $ as an alias for the jQuery. Are there
Share
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.
Remember that an “alias” is just another variable. Aside from the underscore and dollar characters, from the ECMAScript 5 spec:
To put it simply, valid JavaScript variable identifiers have to start with a letter, dollar symbol or underscore symbol, and can contain unicode character escape sequences. The relevant part of the grammar from the spec:
In the case of writing a library, if you want to use
$there shouldn’t be a problem – jQuery provides it’snoConflictmethod to handle that exact situation.