<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">//$(document).ready(function () {
//    //Min and Max price DropDown 
//    $('#MinPrice').change(function () {
//        var value = this.value;

//        $('#MaxPrice option').each(function () {
//            if (value != "") {
//                if ($(this).val() != "") {
//                    if (parseInt($(this).val()) &gt; parseInt(value, 10)) {
//                        $(this).show();
//                    } else {
//                        $(this).hide();
//                    }
//                }
//            } else {
//                $(this).show();
//            }
//        });

//    });

//    $('#MaxPrice').change(function () {
//        var value = this.value;

//        $('#MinPrice option').each(function () {
//            if (value != "") {
//                if ($(this).val() != "") {
//                    if (parseInt($(this).val()) &lt; parseInt(value, 10)) {
//                        $(this).show();
//                    } else {
//                        $(this).hide();
//                    }
//                }
//            } else {
//                $(this).show();
//            }
//        });

//    });
//    $('#MinAcreage').change(function () {
//        var value = this.value;

//        $('#MaxAcreage option').each(function () {
//            if (value != "") {
//                if ($(this).val() != "") {
//                    if (parseInt($(this).val()) &gt; parseInt(value, 10)) {
//                        $(this).show();
//                    } else {
//                        $(this).hide();
//                    }
//                }
//            } else {
//                $(this).show();
//            }
//        });

//    });

//    $('#MaxAcreage').change(function () {
//        var value = this.value;

//        $('#MinAcreage option').each(function () {
//            if (value != "") {
//                if ($(this).val() != "") {
//                    if (parseInt($(this).val()) &lt; parseInt(value, 10)) {
//                        $(this).show();
//                    } else {
//                        $(this).hide();
//                    }
//                }
//            } else {
//                $(this).show();
//            }
//        });

//    });
//    $('#MinSqft').change(function () {
//        var value = this.value;

//        $('#MaxSqft option').each(function () {
//            if (value != "") {
//                if ($(this).val() != "") {
//                    if (parseInt($(this).val()) &gt; parseInt(value, 10)) {
//                        $(this).show();
//                    } else {
//                        $(this).hide();
//                    }
//                }
//            } else {
//                $(this).show();
//            }
//        });

//    });

//    $('#MaxSqft').change(function () {
//        var value = this.value;

//        $('#MinSqft option').each(function () {
//            if (value != "") {
//                if ($(this).val() != "") {
//                    if (parseInt($(this).val()) &lt; parseInt(value, 10)) {
//                        $(this).show();
//                    } else {
//                        $(this).hide();
//                    }
//                }
//            } else {
//                $(this).show();
//            }
//        });

//    });
//    $('#MinRentPrice').change(function () {
//        var value = this.value;

//        $('#MaxRentPrice option').each(function () {
//            if (value != "") {
//                if ($(this).val() != "") {
//                    if (parseInt($(this).val()) &gt; parseInt(value, 10)) {
//                        $(this).show();
//                    } else {
//                        $(this).hide();
//                    }
//                }
//            } else {
//                $(this).show();
//            }
//        });

//    });

//    $('#MaxRentPrice').change(function () {
//        var value = this.value;

//        $('#MinRentPrice option').each(function () {
//            if (value != "") {
//                if ($(this).val() != "") {
//                    if (parseInt($(this).val()) &lt; parseInt(value, 10)) {
//                        $(this).show();
//                    } else {
//                        $(this).hide();
//                    }
//                }
//            } else {
//                $(this).show();
//            }
//        });

//    });

//})
</pre></body></html>