I have some textareas that I don't want to be tabbable, and set the tabindex attribute to be -1.
Chrome/Firefox are working as expected, but Safari allows tabbing between textareas still. Any idea how to disallow this?
Example:
<textarea class="tip-question-response" rows="10" value='' maxlength="400" tabindex=-1></textarea>
<textarea class="tip-question-response" rows="10" value='' maxlength="400" tabindex=-1></textarea>
<textarea class="tip-question-response" rows="10" value='' maxlength="400" tabindex=-1></textarea>