JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<html ng-app>
    <head></head>
    <body ng-controller="Root">
        <h1>Selector Test</h1>
        <p> elem is: {{elem}}</p>
        
        <div>foo</div>
    </body>
</html>

JavaScript

function Root($scope) {
    $scope.elem = angular.element('div');
}