After spending a day searching for ways to perform DOM selection in AngularJs, I came across the following code snippet:
var elem = angular.element(document.querySelector("#myDiv"));
elem.removeClass("selected");
I'm still unsure if AngularJs offers a more efficient way to handle DOM manipulation without relying on JQuery, as my project only requires basic DOM selection.