How do I make bootstrap table rows clickable?

css, html, twitter-bootstrap

Solution

Using jQuery it's quite trivial. v2.0 uses the `table` class on all tables.

$('.table > tbody > tr').click(function() {
    // row was clicked
});

Problem

I can hack this myself, but I think bootstrap has this capability.

Original source

Related problems