I can change the CSS for one of many modals in my page by setting as selector the id of that specific modal.
e.g. instead:
.modal {
top: 0px;
margin-top: 240px;
...
}
setting
#my_modal {
top: 0px;
margin-top: 240px;
...
}
My question:
How can I change the css for only #my_modal's corresponding modal-backdrop?
edit:
$('.modal').addClass('my_personal_stuff'); - works, while
$('.modal-backdrop').addClass('my_personal_stuff'); doesn't works
Why?