Twitter bootstrap – detect key press on modal dialog not working
I would like to detect whether the user has pressed any key when a modal is shown. I tried the following code but the events are not fired. Code snippet: $("#modal_confirmation_dp_change").on('keydown keyup input', function ( e ) { alert(); });…