The standard way to deal with situations where the browser does not support the HTML5 <canvas> tag is to embed some fallback content like: <canvas>Your browser doesn't support "canvas".</canvas> But the rest of the page remains the same, which may be inappropriate or misleading. I'd like some way of detecting canvas non-support so that I can present the rest of my page accordingly. What would you
