Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Detect CSS3 compatability and display message if not compatable. Re: Detect CSS3 compatability and display message if not compatable.

#93945
daba
Member

@kgscott284
Thanks, yes, I’ve seen this code before, and it does find which properties work, but I need to redirect these users to a different page or display a horizontal header image.
How do I rewrite


for (t in Detect) {
document.write(
"CSS " + t + " support? " +
(Detect[t] ? "YES" : "NO") +
"
"
);
}

to perform this task?