Can any one help meto detect browser supports html5 and css3 or not ? I have tried this code :
if(Modernizr.canvas){
alert('Html 5 support');
}
else{
alert('HTML 5 not supported');
}
But this always show "Html 5 supoort" while IE6 doesn't support HTML 5.
THanks, M