Posts

Showing posts from July, 2024

JQuery to remove the times before the selected start time

 When there are 2 time time fields like start time and end time, It should not allow the end time to be selected as less than start time. Here is a JQuery code to disable the options in End time field which are earlier than the Start time. Asume below are the options we get from the database: HTML :                           <select  id="start_dt"  name="start_dt"> <option value=""></option> <option value="{ts '2024-07-17 09:00:00'}">09:00 AM</option> <option value="{ts '2024-07-17 09:30:00'}">09:30 AM</option> <option value="{ts '2024-07-17 10:00:00'}">10:00 AM</option> <option value="{ts '2024-07-17 10:30:00'}">10:30 AM</option> <option value="{ts '2024-07-17 11:00:00'}">11:00 AM</option> </select>                               <select  id=&