DEV Community

Discussion on: Vanilla JS to Jquery: The Noobs Guide

Collapse
 
roileo profile image
roiLeo

.click(func) event shorthand is deprecated in JQuery 3.
Instead you should use .on('click', func)

Collapse
 
th3n00bc0d3r profile image
Muhammad

Thanks Buddy, its just a very basic intro.