I have two text box. one is From date and another is To date. i validate both text box with number. but my requirement is if i fill from date 700 than TO date accept greater than 700.
Here is my HTML
$("#from").keypress(function(e) {
//if the letter is not digit then display error and don't type anything
if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) {
//display error message
$("#errmsg").html("Digits Only").show().fadeOut("slow").css("color", "red");;
return false;
}
});
$("#to").keypress(function(e) {
//if the letter is not digit then display error and don't type anything
if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) {
//display error message
$("#errmsg").html("Digits Only").show().fadeOut("slow").css("color", "red");;
return false;
}
});
$("#searchsubmit").click(function() {
var to = $("#to").val();
var from = $("#from").val();
if (to == "" && from == "") {
//alert('Please Provide Era Value For From And To');
$("#response").html("Please Provide Era Value For From And To").show().fadeOut(3000).css("color", "red");
//window.location();
} else {
var info = 'to=' + to + '&from=' + from; {
if (info) {
//alert(info);
window.location.href = "timeline.php?from=" + from + '&to=' + to;;
} else {
alert('No Data Found');
}
}
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<span class="info"> From </span>
<input class="erainput" name="from" id="from" type="text" placeholder="UP To 700" required />
</span>
<span class="eraform">
<span id="errmsg"></span>
<span class="info"> To </span>
<input class="erainput" name="to" id="to" type="text" placeholder="2000" required />
</span>
<span class="eraform">
<button type="submit" id="searchsubmit" name="submit" class="eraBtn"> Search <i class="fa fa-search"></i> </button>
</span>
Thanks