I would like to prevent users typing a " quote inside the input text field because it's creating errors in fields. How can i do that with a restriction ?
my input field is a simple long text field like this
<div class="form-group">
<label>Long Description</label>
<textarea class="form-control" name="LongDescription" maxlength='1500'
rows="9" placeholder="Enter ..."></textarea>
</div>