У меня есть два jquery плагина , и элементы, созданные двумя плагинами, имеют свое значение z-индекса .E.g:
// auto increase the z-index value
// auto increase the z-index to the maximum of their own when I drag it.
element1 created by plugin1 and has the z-index:1;
element2 created by plugin1 and has the z-index:2;
....
// auto increase the z-index value
// auto increase the z-index to the maximum of their own when I drag it.
element2 created by plugin2 and has the z-index:1;
element2 created by plugin2 and has the z-index:2;
.....
и оба они могут быть перетаскиваемыми , поэтому, когда я щелкаю по одному из них, я хочу, чтобы значение z-index было максимальным всех элементов, которые я создал . Но теперь z-index были разделены!
Я использую перетаскиваемый плагин JQuery UI , но мне не нравится опция stack !
Большое спасибо !!