Build A Calculator! - Operators Standing By - 8/25

This code is still prompting the “Oops, try again. Your operator links need to be in the #operator div!” error:

<head>
	<title>Calculator</title>
</head>
<body>
	<div id="calculator">
	   <div id="total">
	   <div id="operators">
		    <a>+</a>
		    <a>-</a>
		    <a>/</a>
		    <a>*</a>
		    <a id="equals">=</a>
	   <div id="numbers">
	   </div>
	
</body>

I’ve tried adding a div before the links, a /div after the links, and all variations of those two divs, yet nothing is working. Any suggestions? It seems as if this one is bugged, but I really want credit for it and don’t want to skip it.

Please let me know!

maybe try to start over or try to check your mustack

you div has an id of operators, the error says you need operator id. If that doesn’t solve the problem, please share exercise url

1 Like

Still nothing…

https://www.codecademy.com/en/courses/web-intermediate-en-jfhjJ/1/3

this exercise is bugged (not so surprising given its no longer supported), it should find all anchor elements within the div, it doesn’t. Something is wrong with .find(), we can trick the exercise by adding an id of numbers as well as total:

<div id="total numbers">

but given this is already bugged, further exercises are very likely also bugged

1 Like