Method of triggering a regular callback and clientside callback

I have a form in my dash app, after the user triggers sending the form with a regular callback i can generate a window that tells the user the form was sent. If possible, i’d also like to close the form/browser window automatically after some period of time. I can see thats possible with a javascript/clientside callback, but is there a method to trigger the clientside callback after my first callback has completed, or is there a way to trigger both a ‘regular’ callback and clientside callback in the same callback?

Thanks in advance

You may try writing some callback chains.