SyntaxFix
Write A Post
Hire A Developer
Questions
You need to use .change() event as well as using # to target element by id:
.change()
#
id
$('#EventStartTimeMin').change(function() { if($(this).val()===""){ console.log('empty'); } });
Fiddle Demo