Remove Save Button

Is it possible to remove the save button from a SharePoint form in Edit and New views? I just want to Close button.

image

Dear @Jamail_Serio,
You can hide the first button in the toolbar like this:

fd.spRendered(function(){
    //set button's style (hide a button)
    fd.toolbar.buttons[0].style = "display: none;";
});

For more information on how to work with the toolbar using JS code, please, check out the following section - Managing form's toolbar with JS — SharePoint forms