--
You received this message because you are subscribed to the Google Groups "Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jupyter+unsubscribe@googlegroups.com.
To post to this group, send email to jup...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/D3ECB17D.4583D%25Andy%40SantaCruzIntegration.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to jupyter+u...@googlegroups.com.
To post to this group, send email to jup...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/CAK%3DPhk6GGJnqUR%2BVFfLqtYjZ0mJ_AK-ZmAGFEdgxuoQrQpds3w%40mail.gmail.com.
Hi Andy,You can use ipywidgets to do this. First, display a markdown cell with a div having a specific selector```# This is markdown## An empty div with class `foobar`<div class='foobar'></div>```Then insert a view of a Jupyter widget inline in the div```from ipywidgets import *slider = IntSlider(description='Slider')PlaceProxy(child=slider, selector='.foobar')```