destroy

The destroy() method destroys the instance of the MaskedTextBox widget.

<input id="maskedtextbox" value="(889) 333-666" />

<script type="text/javascript">
jQuery(function($) {
    var maskedTextBox = $("#maskedtextbox").shieldMaskedTextBox({
        mask: "(000) 000-000"
    }).swidget();

    maskedTextBox.destroy();

});
</script>