Pop up message after saving?

ill try to show pop up message after saving how ?

this is my code.

frappe.msgprint(‘hello’)

Try after_save event

@hendrik_zeta what dou you mean by after_save event can you illustrate how ?

frappe.ui.form.on(“doctype”,{
after_save: function(){
frappe.msgprint(‘hello’);
}
});

@magic-overflow ill try your code the form cant load.

check your code for syntax errors.