planktoscope/pipeline/pipeline.js

11 lines
314 B
JavaScript
Raw Normal View History

2019-12-11 00:31:06 +01:00
function pipeline() {
var value = $("#value").val();
var string = $("#string").text();
console.log("pipeline.php?value="+value+"&string="+string);
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET", "pipeline.php?value="+value+"&string="+string, true);
xmlhttp.send();
}