How resource intensive is it to do an AJAX from submission using the oninput event on a range slider input field?
I have the following range slider: <input type="range" min="0" max="511" value="208" step="0.01" oninput="slider_move();perform_calculation()"> The slider_move() function only updates the value shown in an associated input-number field. What I am concerned about is the perform_calculation() function which looks like this (shortened version): function perform_calculation() { var isValid = $(‘#formname’).valid(); var value1 = _("value1").value; var value2 =… Read More How resource intensive is it to do an AJAX from submission using the oninput event on a range slider input field?