Call any js function
A simple method to call any js function through html.
HTML
<div onclick=cl()>Уот так уот</div>
CSS
div {cursor:pointer;}
JavaScript
cl:function(){console.log('3423');}
<div onclick=cl()>Уот так уот</div>
div {cursor:pointer;}
cl:function(){console.log('3423');}