I have a web application and most of the users use IE 11 there is no problem with multiply file upload. My problem is that some users use IE 9 and older (HTML5 input type file's multiple attribute not working in IE?) there I cant use it.
I need something like "Conditional comments" for it, but with it, it wont work because IE11 ignores it.
In need something in my html like this:
if(Multiupload supports){
<multiply input tag>
}else{
<single input tag>
}
Is there a way to choose the upload method browser specific?
Thank you for your help