In [2]:
    
displayid = "demo-node-" * string(rand())
    
    Out[2]:
In [3]:
    
display(
    "text/html", 
    """<p id="$(displayid)" style="background-color:red; color:white; padding: 5px;">nothing here</p>"""
)
    
    
In [3]:
    
display("text/html", """
<script>
    window["$(displayid)"] = function(text) {
        var p = document.getElementById("$(displayid)");
        if(p) {
            p.innerText = text;
        }
    };
</script>
""")
    
    
In [4]:
    
display("text/html", """<script>window["$(displayid)"]("hello, world");</script>""")
    
    
In [ ]: