Is it possible to select multi-selection through jQuery for selection, otherwise?
The problem I am facing is that I have a generic js call that does something with an identifier. However, on some pages this has a different purpose.
Therefore, I would like to know the difference.
$("select#categories[multiselect]").doOneThing; //multiselect $("select#categories").doAnotherThing; //normal single select
Possible?
javascript jquery css-selectors
azz0r
source share