I am trying to execute some jQuery code after a Bootstrap modal is closed on my page, I have the id of the modal in my jQuery and everything. I'd like to use a jQuery function of some sort, as opposed to a conditional if-statement. This is the modal which I have open, how would I run some jQuery after it's closed (The animation should be complete and everything)?
<div id="part_number-modal" class="modal fade in" tabindex="-1" role="dialog" aria-labelledby="part_number-modal" aria-hidden="false" style="display: block;">
<!-- the rest of the modal HTML is in here -->
</div>