I'm using pjax in a web app that has some jQuery UI dialogs.
The problem I'm running into is that the div element used to create the dialog is moved out of its container in the dom when the dialog is created.
When pjax loads a new page, the dialog div is not destroyed because it no longer lives inside the container that pjax loads content into. When pjax navigates back to the page with the dialog, it loads a second copy of the div element and everything gets buggy because of the duplicated elements living in the dom.
Has anyone found an elegant solution to this problem? Is there a way to clean up all the dom changes made by the jQuery UI dialog call?
I should also mention that the issue isn't specific to pjax. The same thing happens if I simply use $("#mycontainer").load("page-with-dialog.html");