blob: 6abefeb53065c1d22d1d730c3409271a2900333a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<head>
<style>
.green {
background-color: lime;
}
</style>
</head>
<body>
<div id="foo">The background of this div should be green.</div>
<script>
document.getElementById('foo').id = 'goo';
document.getElementById('goo').className = 'green';
</script>
</body>
</html>
|