Skip to content

Instantly share code, notes, and snippets.

@claudiohilario
Created October 23, 2016 22:18
Show Gist options
  • Save claudiohilario/853ea81ef7ea9ebe15fc5cc453ad6f7e to your computer and use it in GitHub Desktop.
Save claudiohilario/853ea81ef7ea9ebe15fc5cc453ad6f7e to your computer and use it in GitHub Desktop.
DropDownList - Get index
//Java scipt
var e = document.getElementById("ListaDistritos");
var itemSelecionado = e.options[e.selectedIndex].value;
//JQuery
var itemSelecionado = $("#ListaDistritos").prop('selectedIndex');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment