Check out the code that I currently have:
I am looking for a way to prevent users from entering any HTML tags in the "Add Responsibilities" field. For example, if a user enters the following:
<div>Test</div>
It should only display the text like this:
Test
I believe it has something to do with this command, but I am struggling to implement it successfully in my code:
$("#resp_input").html($("#resp_input").text());