Which selector can I use to iterate through all input elements on the page except for the currently focused one?
This is what I currently have:
total = 0.00;
$(".numbers").each(function() {
total += parseFloat($(this).val());
});
<input type="number" class="numbers" />