chab
chab

Reputation: 21

SELECT MATERIALIZE

select is not behaving well.

it is necessary to double-click to show the options.

is it possible to solve?

http://archives.materializecss.com/0.100.2/forms.html

Upvotes: 1

Views: 33

Answers (1)

chab
chab

Reputation: 21

I Found a solution

setTimeout(function () {
                    var kelle = $('.select-wrapper');// $('.select-wrapper');
                    $.each(kelle, function (i, t) {
                        t.addEventListener('click', e => e.stopPropagation())
                    });
                }, 500)

Upvotes: 1

Related Questions