Dialog close not working properly

Dialog close not working properly

I am using Dialog in My page.I am clicking the button(Send button) in dialog popup it have closed unproperly.What is the reason its closed unproperly?

My code is:

      <form id="forms" > 
         <div id="app" >
      <input type="text" " />
      <input id = "shareSend" type="submit" value="Send" onclick = "send"/>
</div> 
    </form>

$('.app').dialog({
        modal: true,
      draggable:false,
      resizable:false,
      show: 'fade', 
      hide: 'fade'
      
});

function send(){
      $('#app').dialog('close');
      $(app).dialog('destroy').remove()
}