Contact Us!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: sagemathinc/cocalc-example-files
Path: blob/master/web-app-worksheet/app.js
Views: 922
1
$(".app-button").click(function(e) {
2
3
var n = parseFloat($(".app-input").val());
4
5
worksheet.execute_code({
6
code: "salvus.data['n'] * random()",
7
data: {n:n},
8
preparse: false,
9
cb : function(mesg) {
10
console.log(mesg);
11
if (mesg.stdout) {
12
$(".app-output").append(mesg.stdout);
13
}
14
}
15
})
16
})
17
18