Can I specify multiple data targets for Twitter Bootstrap collapse?

twitter-bootstrap-3

Solution

You can simply add all the ids separated by commas in `data-target`:

<button type="button" data-toggle="collapse" data-target="#demo,#demo1,#demo2">
  Hide them all
</button>

Problem

I'd like to target two divs for expand when clicking on a single trigger? Is that possible?

Original source