I\'m new to Javascript and I\'m try to understand some code. I don\'t understand and I can\'t find any documentation about the # sign.
#
$(function ()
It's an element ID e.g: `...
When u need to access this div with JS or jQuery just call it $("#xyz").do something
$("#xyz")
for class .... >> $(".abc")
....
$(".abc")