close

This event is fired when the context menu is about to be closed.

<script type="text/javascript">
jQuery(function($) {
   $("#menu").shieldContextMenu({
              target: ".itemlist",
              filter: ".item",
              events: {                    
               close: function (e) {
                 alert(e.target.options.animation.enabled);
                }
                }
            });
});
</script>