JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app ng-controller="test">
    <div ng-bind="content"></div>
    <input id="txtElem" type="text" ng-model="content">
        <br><br>
        <button ng-click="stopBinding()"> Stop Binding On the element below forever </button>
        <div>Stop me when your done: {{content}} </div>
</div>

JavaScript

function test( $scope ) {
    $scope.content = 'Welcome';
    
    $scope.stopBinding = function() {
       angular.element(document.getElementById('txtElem')).unbind();
    };
};