Comment afficher un spectacle conditionnel sur le champ sélectionné

function test(id, val){
  if(id == "location"){
    handleLocationValues(val);
  }
  else if(id == "home"){
    handleHomeValues(val);
  }
  ...
  ...
}
Bad Beaver