aktuelle.kurse/oldies/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/07 Script (JQuery)/07 jQuery Lösungen/jQueryFunction.js
Müller Harald 3fdacd20c0 muh
2022-07-28 09:14:44 +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"} );
});
});