input type="date" is not recognized in internet explorer 11

0

I tried to place

<input type="date" name="fechaesperada">

But I do not recognize the internet explorer control 11 Someone knows what I should install or what syntax should be in order to have a control to handle a calendar

    
asked by Sebastian Mateus Villegas 01.11.2017 в 14:58
source

3 answers

2

The only browser that accepts HTML5 syntax entirely is Google Chrome and Microsoft Edge should rest the datepicker function of jquery is very good ... link

    
answered by 01.11.2017 / 15:13
source
1

Internet Explorer does not support input [date] . The only microsoft browser that supports it is Edge . You will have to use bootstrap datetimepicker if you want to have a calendar in your application.

    
answered by 01.11.2017 в 15:06
0

Several of the new features of HTML 5 are not supported by multiple browsers or versions of these, IE11 does not support the input date, which is why it does not work.

You can check it here

And you can check here the other input and the browsers that support it.

    
answered by 01.11.2017 в 15:07