Answers for "why we use $ in jquery"

1

what is $ in jquery

$ is the shortcut for jQuery and acts as a selector. Similar to querySelector
$('#id')
$('.class')
$(this)
Posted by: Guest on July-10-2021
0

why we use $ in jquery

$ is alias to jquery by default. In the place of $ we can use Jquery by default. Jquery is almost simplying code of js this is too we can consider as simplification of code.
Posted by: Guest on June-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language