Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

📚 The CoCalc Library - books, templates and other resources

Views: 96187
License: OTHER
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