Jquery Event Handler Not Working When Calling From Page
I have written an event to save the data in a widget.js file & the handler is on the page. There is no error or exception is coming but the handler is not getting called. Pleas
Solution 1:
Looks like event delegation is not working fine with global events
$('#discussionwidget').on("sendMessage", sendMessageHandler);
Demo: Fiddle
Post a Comment for "Jquery Event Handler Not Working When Calling From Page"