Posts

Showing posts from July, 2021

Best and Easiest Dynamic Year Dropdown using Javascript

Image
 There are many ways to show Year Dropdown on  your page. 1. To hard code the years                          <option value="2021">2021</option>                         <option value="2020">2020</option>                         <option value="2019">2019</option>                         <option value="2018">2018</option>                         <option value="2018">2018</option> This is not the right approach as code has to be updated after change in year. 2. Adding Year from Database. This will include creating table showing the years and then writing a query in your code to show the years. This approach also has limitations as the data has to be updated every year in your table.  Best Way - The best way is totally automatic which does not include any human intervention after creation of code.  Javascript Code: <script type="text/javascript">