Results:
Likelihood of cheating: Not calculated yet
function calculateCheatingLikelihood() {
const searchTerm = document.getElementById(“searchTerm”).value;
const trendData = parseFloat(document.getElementById(“trendData”).value);
const location = document.getElementById(“location”).value;
const timeFrame = parseInt(document.getElementById(“timeFrame”).value);
if (!searchTerm || isNaN(trendData) || isNaN(timeFrame) || !location) {
alert(“Please fill in all fields.”);
return;
}
const likelihood = trendData * timeFrame / 100;
document.getElementById(“likelihoodOutput”).innerHTML = `Likelihood of cheating for “${searchTerm}” in ${timeFrame} months at ${location}:
${likelihood.toFixed(2)}%`;
}
function resetForm() {
document.getElementById(“cheatingCalculatorForm”).reset();
document.getElementById(“likelihoodOutput”).innerHTML = “Likelihood of cheating:
Not calculated yet“;
}
.calculator-container {
font-family: Arial, sans-serif;
max-width: 600px;
margin: 0 auto;
padding: 20px;
border-radius: 10px;
background-color: #f9f9f9;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.calculator-header h2 {
text-align: center;
margin-bottom: 10px;
}
.input-group {
margin-bottom: 15px;
}
.input-label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}
.input-field {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.button-group {
display: flex;
justify-content: space-between;
}
.calc-button, .reset-button {
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
.calc-button {
background-color: #4CAF50;
color: white;
}
.reset-button {
background-color: #f44336;
color: white;
}
.results {
margin-top: 20px;
padding: 10px;
background-color: #e7f4e7;
border: 1px solid #ddd;
border-radius: 5px;
}
.highlight {
font-weight: bold;
color: #d32f2f;
}