jquery basisc funtion code example
Example 1: jquery event listener
// There are quite a few abstracted versions of the following
$('element').on('event', function() {
// Do something
});
// Where 'event' is something such as 'click', 'hover' etc
// They are abstracted as seen below
$('element').click(function(){
// Do something
});
$('element').hover(function(){
// Do something
});
// etc...
Example 2: 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.