This is a not a full on JavaScript project like the following question/answers:
- Javascript Reference error "$ is not defined"
- JavaScript/jQuery - "$ is not defined- $function()" error
This is a simple Jupyter notebook/lab expansion python package called "jupyter-notify" that should generate a pop up "browser notification" after a cell finish running
Previously it was installed via
pip install jupyternotify
CELL 1:
%load_ext jupyternotify
CELL 2:
%%notify
import time
time.sleep(5)
CELL 2 ERROR:
Javascript Error: $ is not defined
Goal
- is to not to have this error and
- just get a pop up message whenever a certain cell finishes running