Can you please take a look at this code and let me know why the click event is not firing ?
$( ".content" ).on("click", function() {
alert( "This is Clicked" );
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<input type="text" class="form-control" class="content" >