Create pipeline.js

This commit is contained in:
tpollina 2019-12-10 15:31:06 -08:00 committed by GitHub
parent 37bc5546c9
commit eeb00178a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
pipeline/pipeline.js Normal file
View file

@ -0,0 +1,10 @@
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();
}