Displaying 1 result from an estimated 1 matches for "cc_on".
Did you mean:
mc_on
2007 Mar 14
0
SV: Re: script.aculo.us question
Another option would be to use conditional comments, which is only supported in IE. Either in the javascript:
/*@cc_on @*/
/*@if (@_win32)
Event.observe(window, ''load'', ...(replace img)...);
/*@end @*/
Or in the HTML for including the script (this support checking versions):
<!-[if lt IE 7]>...include script...<![endif]-->
-Tobias
_____________...