I am using this code to remove and a CSS class:
$('.called').click(function() {
$('called').removeClass('fa-phone-square').addClass('fa-check');
})
The problem is, it removes and adds classes to ALL tags with the class '.called'. I want this function to work only for the single item that has been clicked.
How would I do this?