Hallo,
wie kann ich die Variable "xhr" bzw. "xhr.send()" in der folgenden Javascript-Funktion "updateOutput()" in der Konsole ausgeben ?
<script>
function updateOutput(element) {
var xhr = new XMLHttpRequest();
if(element.checked){
xhr.open("GET", "esp-outputs-action.php?action=output_update&id="+element.id+"&state=1", true);
console.log( "Button checked " );
}
else {
xhr.open("GET", "esp-outputs-action.php?action=output_update&id="+element.id+"&state=0", true);
console.log( "Button unchecked " );
}
console.log( "xhr.send: " + ? );
xhr.send();
}
MfG
Juergen B.