Can anyone help me figure out why this piece of code is generating syntax errors in my AngularJS controller?
$(".editRecur").focusin(function() {
$(.recurBox).addClass("focus");
}).focusout(function() {
$(.recurBox).removeClass("focus");
});