[jQuery] General information -To get selected index of SELECT (list) using jQuery

[jQuery] General information -To get selected index of SELECT (list) using jQuery


Jquery selectedindex
Need to remember that JQuery returns an array of matching elements,
even if you use the '#' selector that returns only one elements based
on the ID.
So to find the selectedIndex of a list:
function Method() {
var index = $('#myList')[0].selectedIndex;
};