Maybe jackery hijacking
There are two ways to handle click events in JS
<span onclick="handle()"></span> function handle(){......} in jquery
<span class="handle"></span> jQuery('.handle').click(function(){ ..... .... }); so I want to ask attaching a click event, as done above in jQuery, this is bad practice
this is called capture
+5