aktuelle.kurse/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/07 Script (JQuery)/07 jQuery Lösungen/jQuery1.html
Harald G. Mueller cdff097ef7 muh
2022-03-17 11:19:26 +01:00

24 lines
439 B
HTML

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.2.4.js"">
</script>
<script type="text/javascript">
function ImageHosting_Click(){
alert("test");
}
</script>
</head>
<body>
<form action="">
<input type="text" size="40" id="iofield" name="iofield" />
<input type='button' id='ImageHosting' value='Click me' onclick='ImageHosting_Click()' />
</form>
</body>
</html>