Hey I would like to know how to show a div and hide another at the same time. And that it only does that when I give an input of 5 or higher:
<div class="InputField InputMeters">
<input type="tel" name="iFenceMeters" id="FenceMeters" class="AutosubmitCalculator"
data-minimum-length="1" tabindex="1" placeholder="00" maxlength="3" value="">
<div class="FormExclamation Tipped Hidden" id="FormCalculatorExclamationFence">0</div>
</div>
this needs to show: <div id="testje" class="CalculatorRight" style="display:none">
This needs to hide: <div id="SummaryHTML" class="CalculatorRight">
The code I use now that only focuses on input and not on input's value:
$('#FenceMeters').on('input', function() {
$('#testje').show();
$('#SummaryHTML').hide();
});