I am using bootstrap modal. When modal is open background content opacity is not changed by default. I tried changing in js using
function showModal() { doc
you could utilize bootstrap events:: as
//when modal opens $('#yourModal').on('shown.bs.modal', function (e) { $("#pageContent").css({ opacity: 0.5 }); }) //when modal closes $('#yourModal').on('hidden.bs.modal', function (e) { $("#pageContent").css({ opacity: 1 }); })