0

I tried the way that is already described in an answer to this question.

Bootstrap control with multiple “data-toggle”

But this way is not working.

Is there any other way of using data-toggle="modal" and data-toggle="dropdown" on a same link.

<li class="dropdown" data-toggle="modal" data-target="#myModal"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown"><span>My Menu</span></a>
      <ul class="dropdown-menu">
        <li><a href="mang_store">First Menu</a></li>
      </ul>
</li>`

1 Answers1

0

You can always use javascript to toggle the first event i.e data-toggle="modal" and/or data-toggle="dropdown".

Just use one event on click and put in the javascript the other event to trigger in X seconds.

kibyungski
  • 21
  • 4