JSFiddle - React, Tailwind, and code Playground

by dingen2010

HTML

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<script>
    // Create a new module
    var app = angular.module("myModule", []);
    
    app.directive("enter",function(){
    return function($scope,element){
    element.bind("mouseenter",function(){
        console.log("mousie enter");
    });
    }
    });
</script>
<div ng-app="myModule">
    <div enter>skljfksjfkjskdfsd</div>
</div>