JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app>
<div id="outer" ng-controller="MsgCtrl">
You are {{msg}}
</div>
<div onclick="change()">click me</div>
</div>
JavaScript
function MsgCtrl($scope)
{
$scope.msg = "great";
}
function change()
{
alert("a");
var scope = angular.element("#outer").scope();
scope.msg = 'Superhero';
}