mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 18:51:56 +01:00
9 lines
288 B
JavaScript
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"} );
|
|
});
|
|
});
|