pandatools.tech
Open in
urlscan Pro
2a02:4780:b:1540:0:c20:1e38:2
Public Scan
URL:
https://pandatools.tech/
Submission: On May 20 via api from BE — Scanned from CH
Submission: On May 20 via api from BE — Scanned from CH
Form analysis
1 forms found in the DOM<form>
<div class="row mb-3">
<div class="col-md-6">
<div class="form-floating mb-3 mb-md-0">
<input class="form-control" id="inputSurveyCount" type="number" placeholder="Enter your survey count Ex:22">
<label for="inputFirstName">Survey Count</label>
</div>
</div>
<div class="col-md-6">
<div class="form-floating">
<input class="form-control" id="inputCurrentScore" type="number" placeholder="Enter your current Score Ex: 60.42">
<label for="inputLastName">Current Score</label>
</div>
</div>
</div>
<div class="form-floating mb-3">
<input class="form-control" id="inputTargetScore" type="number" placeholder="70">
<label for="inputEmail">Target Score</label>
</div>
<div class="mt-4 mb-0">
<div class="d-grid"><a class="btn btn-primary btn-block" onclick="document.getElementById('result').style.display='block'" button="" id="submit">Submit</a></div>
</div>
<script>
// Define the function to be executed when the button is clicked
function myFunction() {
console.log("test");
var surveyCount = document.getElementById("inputSurveyCount").value;
var currentScore = document.getElementById("inputCurrentScore").value;
var targetScore = document.getElementById("inputTargetScore").value;
var surveysNeedeed = 0;
while (currentScore < targetScore) {
total = (surveyCount * currentScore) + 100;
surveyCount++;
currentScore = total / surveyCount;
surveysNeedeed = surveysNeedeed + 1;
}
document.getElementById("result").textContent = "You will need " + surveysNeedeed + " Highly Satisfied Surveys"
}
// Get the button element by its id
var button = document.getElementById("submit");
// Add an event listener to the button
button.addEventListener("click", myFunction);
</script>
</form>
Text Content
Panda Tools GEM Survey Calculcator SURVEY CALCULATOR 1. This tool will give you how many surveys you will need to reach the desired goal! Survey Count Current Score Target Score Submit TEST