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
I am assuming you want to set the opacity of the modal background...
Set the opacity via CSS
.modal-backdrop { opacity:0.5 !important; }
!important prevents the opacity from being overwritten - particularly from Bootstrap in this context.
!important