Title: Clickable rows
Last modified: March 15, 2020

---

# Clickable rows

 *  Resolved [jonuk80](https://wordpress.org/support/users/jonuk80/)
 * (@jonuk80)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/clickable-rows-3/)
 * Does this plugin allow rows to be clicked, for more detailed information about
   the row that was clicked? All my data is in the WP database.
 * I’m aware WPDataTables do master detail tables, and I’m after this sort of thing,
   but with your product instead 🙂 Thanks
 * Jon

Viewing 1 replies (of 1 total)

 *  Plugin Support [Syed Numan](https://wordpress.org/support/users/annuman/)
 * (@annuman)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/clickable-rows-3/#post-13287025)
 * Hello [@jonuk80](https://wordpress.org/support/users/jonuk80/),
 * Yes, Clickable entire rows are quite possible with some custom work. You need
   to use some Custom JS and CSS to achieve this.
 * Here is the JS code to add to the table’s Custom JS section.
 *     ```
       $('tr').click( function() {
       }).hover( function() {
       $(this).toggleClass('hover');
       });
       $(document).on('click', 'tbody tr', function(e){
       e.preventDefault();
       var url = $(this).find('a').attr('href');
       window.open(url, '_blank');
       });
       ```
   
 * The CSS code to add to the Custom CSS section of the table.
 *     ```
       .footable tbody tr:hover {
       cursor: pointer;
       }
       ```
   
 * We recommend using our dedicated support channel any support related issue. [https://wpmanageninja.com/support-tickets/](https://wpmanageninja.com/support-tickets/)
 * Your ticket will be answered within one hour. In the worst case, it might be 
   twenty-four hours.
 * Thanks

Viewing 1 replies (of 1 total)

The topic ‘Clickable rows’ is closed to new replies.

 * ![](https://ps.w.org/ninja-tables/assets/icon-256x256.png?rev=3337819)
 * [Ninja Tables – Easy Data Table Builder](https://wordpress.org/plugins/ninja-tables/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ninja-tables/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ninja-tables/)
 * [Active Topics](https://wordpress.org/support/plugin/ninja-tables/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ninja-tables/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ninja-tables/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Syed Numan](https://wordpress.org/support/users/annuman/)
 * Last activity: [5 years, 8 months ago](https://wordpress.org/support/topic/clickable-rows-3/#post-13287025)
 * Status: resolved