After using the .val()
method to enter data into a text box, I noticed that when trying to click "add", the button appears disabled.
<input class="btn-primary action-submit" type="submit" value="Add" disabled="">
If I manually type in text, the disabled feature disappears.
<input class="btn-primary action-submit" type="submit" value="Add">
Is there a way to remove this disabled attribute?