Element inside container is not working after setting pjax reload async to false

I have codes almost like below

<div id="container">
<input id="check" type="checkbox"> ....
</div>
<script>$.pjax.reload({container:'#container', async: false});</script>

After pjax reload with async false, all elements inside the container does not response to any event handler like click, select, focus, etc. But when I set, to true, it worked. Is there any way element inside the container to response to event handler after pjax reload async false ?

Take a look at this post if it help you: pjax reload with async set to false