Hi,
I have a JQuery-Datepicker that (however) crashes my site when you are using IE6. So I want the site to prevent the loading of that particular javascript on IE6.
I know about this trick:
<!--[if IE 6]>
<script type="text/javascript" src="datepicker.js"></script>
<![endif]-->
But I need it the other way around: To load the Script if the browser is NOT IE 6
. This will not work, since Mozilla & Co. will see just a simple comment:
<!--[if !IE 6]>
<script type="text/javascript" src="datepicker.js"></script>
<![endif]-->
So, what's the best solution for this problem? Any ideas?
Thanks in advance.