Thanks to Shviller, I went and checked out:
modernizr.com
This tool will be VERY HANDY for anyone doing WEBSITES in HTML5, especially using C2.
It has a whole bunch of "tests" it performs in nano-seconds to see if the browser is capable of HTML5 or not.
I simply added the .js file to my working directory, then added this code to my index.html file;
------------------------------
<script src="modernizr.js"></script>
<script>if (Modernizr.canvas) {
// let's draw some shapes!
} else {
// no native canvas support available :(
window.location = "http:www.your-redirection-here.com"
var msg = 'With a different browser you�ll get to see the WebGL experience here: get.webgl.org.';
document.getElementById( '#notice' ).innerHTML = msg;
}
</script>
---------------------
I added it at the bottom, just above the </html> tag.
Works like a charm!
~Sol