> If so, how do I target 3.6 only? (I must provide gradients if the > browser does not handle the css).
How about
var isGradientSupported = !!new
Element('div').setStyle('background','-moz-linear-gradient(0 0, red,
orange)').getStyle('background') || false;
(With better garbage collection, o'course.)
-- S.
