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.length)
.fadeIn(600)
.delay(8000)
.fadeOut(400, showNextTweet);
}
showNextTweet();
});
Maybe you could try
Or