E-mail List Archives
Re: Tabindex and initial focus
From: Swift, Daniel P.
Date: Feb 1, 2018 11:22AM
- Next message: Jonathan Avila: "Re: Tabindex and initial focus"
- Previous message: Steve Green: "Re: Tabindex and initial focus"
- Next message in Thread: Jonathan Avila: "Re: Tabindex and initial focus"
- Previous message in Thread: Steve Green: "Re: Tabindex and initial focus"
- View all messages in this Thread
While far from pretty, you could use JS to reset the focus. In the off chance that you are using jQuery:
$(document).ready(function() {
$('input').each(function(){
$(this).removeAttr('tabindex');
});
});
Dan Swift
Senior Web Specialist
Enterprise Services
West Chester University
610.738.0589
- Next message: Jonathan Avila: "Re: Tabindex and initial focus"
- Previous message: Steve Green: "Re: Tabindex and initial focus"
- Next message in Thread: Jonathan Avila: "Re: Tabindex and initial focus"
- Previous message in Thread: Steve Green: "Re: Tabindex and initial focus"
- View all messages in this Thread