20 Awesome Examples of Accessible Websites

if (typeof BingeIframeRan === “undefined”) {
window.addEventListener(“message”, receiveMessage, false);
function receiveMessage(event) {
try {
var parsed = JSON.parse(event.data)
if (parsed.context === “iframe.resize”) {
var iframes = document.getElementsByClassName(“binge-iframe”);
for (let i = 0; i < iframes.length; ++i) {
if (iframes[i].src == parsed.src || iframes[i].contentWindow === event.source) {
iframes[i].height = parsed.height; }
iframes[i].style.opacity = 1;
}
}
} catch (error) {
}
}
var BingeIframeRan = true;
}

Earlier this year, we introduced you to a solution called accessiBe* that makes websites accessible with just a snippet of code.

We are proud users of accessiBe at Convince & Convert. The interface allows every visitor to a website with accessiBe installed to adjust website design, UI and accessibility to their specific needs.

I’m a big an of the solution. To give you an idea of wha… Read More