$(".setDate").on('change', 'input', function() {
alert("s"); //Not working at all
});
$(".setFeastDate").click(function(){
alert("s"); //Working but on click button
});
<input class="ft-date-picker-sm setDate" value="{{Carbon\Carbon::parse($some_date)->format('l, M j')}}" id="{{$some['id']}}" readonly="true"/>
- I expect it Should alert on selecting date not input field how could it possible pls suggest