Can anybody help me, what i am doing wrong here.
I want to add an class, and when I click on the class, it should remove the class.
$(".processing-signs-direction-cover-sign-direction-selection-process").click(function() {
$(this).addClass("selected-sign");
});
$(".selected-sign").click(function() {
$(this).RemoveClass("selected-sign");
alert(23);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
Thank you