I have a page in which I use handlebars to populate two form elements one by one. Both forms have multi-accounts with bootstrap.
I need to run
$('.multiselect').multiselect()
when rendering the second form, but as bootstrap has already added
'.multiselect'
and when I try to use
('.multiselect').multiselect()
the first form is confused
One solution that I see is using different class names for multiple selections, but I doubt it looks like a hack to me.
Any suggestions
source
share