I have this input :
input type="text" class="form-control selectiondate" id="datepicker-month" />
And I would like when I click on a month :
I get an alert with ‘ok’
I tried this :
$(document).on('click', '#datepicker-month', function () {
alert('ok');
});
Tags: java, javascriptjavascript, select