You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Orchestrator/Demo/BUYER_01/buyer_01.js

29 lines
396 B

$('.ui.dropdown')
.dropdown('clear')
;
var content = [
];
let i = 1
document.getElementById("buyNumber").innerHTML = i
$('.ui.search')
.search({
source: content
})
;
function buy_confirm() {
j = String(i)
content.push({ title: j })
$('.ui.search').search({source: content})
i=i+1;
document.getElementById("buyNumber").innerHTML = i;
$('.ui.dropdown').dropdown('clear')
}