Hello,
Is it possible, via jQuery, to select a multiselect to a select, differently?
The issue I'm having is that I have a general js called that does something to an id. However on some pages it has a different purpose.
Therefore I would like about to recognize the difference.
$("select#categories[multiselect]").doOneThing; //multiselect
$("select#categories").doAnotherThing; //normal single select
Possible?