JSFiddle - React, Tailwind, and code Playground

by wiltomap

HTML

<div class="form-horizontal">
  <div class="form-group">
    <label for="aep-lineaire-annee" class="col-xs-1 control-label annee-label">Année</label>
    <div class="col-xs-4">
      <select class="form-control" id="aep-lineaire-annee"></select>
    </div>
  </div>
</div>

CSS

#aep-lineaire-annee {
  width: 150px;
}

JavaScript

var idData = 'aep-lineaire';

function getAnnee(id) {

  var year = (new Date).getFullYear();
  var option = '<option>' + year + '</option>';

  while (year > 2015) {
    year = year - 1;
    option = option + '<option>' + year + '</option>';
  }

  $("#" + id).html(option);
  //alert(id);

}

getAnnee(idData + '-annee');