aktuelle.kurse/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/07 Script (JQuery)/07 jQuery Lösungen/jQueryFunction.js
Harald G. Mueller 28ff49e098 muh
2023-06-29 07:50:41 +02:00

9 lines
288 B
JavaScript

$(document).ready(function() {
$("#btn1").click(function () {
var txt=$('input:text[name=iofield]').val("Klick Event ausgeloest");
// alert(txt);
// $.get( "http://localhost/M133/jquery/jquery6.php", {name: txt, time: "Test"} );
});
});