Link to home
Start Free TrialLog in
Avatar of lulu50
lulu50Flag for United States of America

asked on

Alert user if from date greater than to date

Hi

How can I alert the user if they enter From date greater than To date?


var StartCreateDate = $('#FromCreatedDate').val();
var EndCreateDate = $('#ToCreatedDate').val();

  if ((StartCreateDate != null && EndCreateDate != null) && (StartCreateDate > EndCreateDate)) {
            alert("From create date must be greater than to create date")
            return false;
        }

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of leakim971
leakim971
Flag of Guadeloupe image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of lulu50

ASKER

leakim971

Thank you so much !!!!!

Thank you
Thank you
Thank you
Avatar of lulu50

ASKER

Thank you!!!


Thank you!!!

Thank you!!!

Thank you!!!
you welcome!