I want to load these scripts only in IE. The conditional comments aren't working because they aren't supported on IE 10 or above and I'm working on IE11.
¿Any ideas?
I tried the answer of this question, but it's giving me an error.
Active Server Pages error 'ASP 0138'
Nested Script Block
/solicitudviajes/desplazamientos.asp, line 31
A script block cannot be placed inside another script block.
<script type="text/javascript">
if(/MSIE \d|Trident.*rv:/.test(navigator.userAgent)){
document.write('<script src="../jquery-ui/jquery-1.10.2.js"><\/script>');
document.write('<script src="../jquery-ui/ui/jquery.ui.core.js"><\/script>');
document.write('<script src="../jquery-ui/ui/jquery.ui.widget.js"><\/script>');
document.write('<script src="../jquery-ui/ui/jquery.ui.dialog.js"><\/script>');
document.write('<script src="../jquery-ui/ui/jquery.ui.button.js"><\/script>');
document.write('<script src="../jquery-ui/ui/jquery.ui.position.js"><\/script>');
document.write('<script src="../jquery-ui/js/jquery-ui-1.10.4.custom.min.js');
}
</script>