destroy

Destroys the component, returning any underlying elements in their original state.

<script type="text/javascript">
    $(function () {
        $("#loadingpanel1").shieldLoadingPanel({
            text: "Loading...",
            showImage: false
        });

        // destroy the component
        $("#loadingpanel1").swidget("LoadingPanel").destroy();
    });
</<script>