Having a bit of an issue with my JS function at the moment.
Essentially the aim of the game here is to get the code setup in such a way where only on even rows and even cells, will the circles from the table be colored yellow, while the rest remain green.
I have it showing like this at the moment:
How it shows when previewing the HTML file
The red squares around the circles indicate the even rows/even cells that need to be colored in yellow instead of green.
Here is my code:
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<style>
body {
background-color: linen;
}
td {
height: 75px;
width: 75px;
background-color: green;
border-radius: 50%;
display: inline-block;
}
</style>
<meta charset="utf-8">
<title></title>
<script type="text/javascript">
function validation() {
var userSubmit = document.getElementById('size').value; //takes the users input and stores it within the variable userSubmit.
var num_rows = userSubmit; //assigning the users input to the number of rows.
var num_cols = userSubmit; //assigning the users input to the number of colums.
var tableBody = ""; //empty string setup for the table.
for (var r = 0; r < num_rows; r++) {
tableBody += "<tr>"; //for loop going through the number of rows required to complete the table.
for (var c = 0; c < num_cols; c++) {
tableBody += "<td>" + c + "</td>"; //for loop, within the rows for loop, this is to determine the number of columns required in the table
}
tableBody += "</tr>";
}
document.getElementById('wrapper').innerHTML = ("<table>" + tableBody + "</table>");
}
</script>
</head>
<body>
<form name="form1">
<select id="size">
<option value="3">3x3</option>
<option value="5">5x5</option>
<option value="7">7x7</option>
</select>
</form>
<button type="submit" onclick="validation()">Generate Graph</button>
<div id="wrapper"></div>
</body>
</html>
My function is creating the table from the grid the user selects, but I'm unsure how to approach the JS required to color the cells required as mentioned above.
Any advice would be appreciated, or please let me know if I haven't been clear enough!