planktoscope/pipeline/pipeline.js
2019-12-10 15:31:06 -08:00

11 lines
314 B
JavaScript

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();
}