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');}