Im trying to use jquery to detect a number above or below:
$(".input-text").val()) > 499) {}
$(".input-text").val()) < 1000) {}
Is there a way to set a range such as 500-1000 and the having jquery execute a function based on the range?
Thanks in advance!
var value = $(".input-text").val(); if(value > x && value < y){}?parseFloat($(".input-text").val(),10) > 499