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