html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p>This code is for asking a question on this platform that is why the second radio doesnt work<br />Nevermind fixed it</p>
<div onclick="mik()">
<input type="radio" id="x1" name="xx"/>
<button for="x1" id="n1">First</button>
<input type="radio" id="x2" name="xx"/>
<button for="x2" id="n2">Second</button></div>
<div id="a1">
</div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
6
7
8
9
10
11
function mik() {
var x1 = document.getElementById("x1").checked;
var n1 = document.getElementById("n1");
var x2 = document.getElementById("x2").checked;
var n2 = document.getElementById("n2");
n1.style= x1? "color:red;":"";
n2.style.color= x2? "red":"";
}
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run