JQuery Notification event does not get fired.

JQuery Notification event does not get fired.

Hi,
I'm trying to add a notification using JQuery when clicked on a button.

  1.  <input type="submit" runat="server" id="submit_click" name="submit" value="Submit" class="btn btn-success"/>
Associated event should get fired by this :
  1.  $('#submit_click').click(function() 
But it does not...
I've also tried giving, 
  1. $('body').on('click', '#submit_click', function (e) {...........});
Please check the below JSFiddle:
      
JSFiddle :  https://jsfiddle.net/tj5a5bnk/17/