Posted by dianacastillo on June 10, 2013 at 3:40pm
Hi, the accordion views I have made are not tabable (you cant read the content by tabbing) which I need for 508 accesability. Does anyone have an answer for this?
thanks
Hi, the accordion views I have made are not tabable (you cant read the content by tabbing) which I need for 508 accesability. Does anyone have an answer for this?
thanks
Comments
solution
i put this in a block at the bottom of the page
(function ($) {
$(document).ready(function(){
$('a')
.each(function(){ // loop through all matched elements
$(this).removeAttr("tabindex");
});
});
})(jQuery);
which module?
I assume you were using:
https://drupal.org/project/views_accordion
Would be good to report the bug there so the issue can be fixed.
--
OpenConcept | Twitter @mgifford | Drupal Security Guide
views accordion
yes I did put it there and answered it , I dont know if its a bug or if it has some reason for being there though
https://drupal.org/node/2016961