Answers for "how to create pop up warnings in jupyter notebook"

0

how to create pop up warnings in jupyter notebook

require(
    ["base/js/dialog"], 
    function(dialog) {
        dialog.modal({
            title: 'Hello world',
            body: 'Hi, lorem ipsum and such',
            buttons: {
                'kthxbye': {}
            }
        });
    }
);
Posted by: Guest on February-19-2021

Code answers related to "how to create pop up warnings in jupyter notebook"

Python Answers by Framework

Browse Popular Code Answers by Language