wmi-parprog/03_Declarative_EventDriven/web6.html
2025-03-10 14:05:24 +01:00

32 lines
597 B
HTML

<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<h1 class="mainh">Hi there!</h1>
<h1 class="sech">Hi there! 2222</h1>
<button onclick="$('h1.mainh').addClass('green');">
Make Green
</button>
</body>
<script>
a = 9;
if (a == 19)
alert('abc' + a);
alert($('h1.sech').html());
$('h1.sech').html('NEW header');
$('h1').each(function(index, obj) {
alert(index);
alert($(obj).html());
});
</script>
</html>