Created jsfiddle for my issue http://jsfiddle.net/sudiptabanerjee/93eTU/
In modal window issue is on Change Month and Change Year combos.
a) IE 11: everythin
Building off of Surjith's answer, I added a try/catch block to resolve a ReferenceError exception for confModal
being undefined.
Coffeescript:
enforceModalFocusFn = $.fn.modal.Constructor::enforceFocus
$.fn.modal.Constructor::enforceFocus = ->
try
$confModal.on "hidden", ->
$.fn.modal.Constructor::enforceFocus = enforceModalFocusFn
return
$confModal.modal backdrop: false
catch error
if error.name != 'ReferenceError'
throw error