3
I need an input to come with the date of the respective day, for example today: 17/11/2015, tomorrow 18/11/2015. This input cannot allow edits.
My code is like this:
<label class="item item-input">
<span class="cinza input-label">Data:</span>
<input class="cinza" type="date">
</label>
Just be careful, 'cause
input="date"
does not work in all browsers and this can give you a lot of headache (as it is with me). Then check this date portability need.– celsomtrindade