Option groups

on Change event : Add new option

Selected Index:

Selected Value:

  
$('select').change(function(event){
    console.log(event.target.selectedIndex)
    console.log(event.target.value)
})
  

Trigger Handlers