Display:none on fading carousel breaks accessibility
问题 I've got a twitter fading carousel type thing going at the bottom of http://seontario.org. It uses display:none to show and hide the tweets. But display:none doesn't work with screen readers because they don't render that content. Any thoughts on how to do this so that it would be accessible? // TWITTER FEED jQuery(document).ready(function($){ var latesttweets = $(".latest-tweets ul li"); var tweetIndex = -1; function showNextTweet() { ++tweetIndex; latesttweets.eq(tweetIndex % latesttweets