jQuery Plugin for Stacking Tables on Small Screens | stacktable.js

stacktable.js is a jQuery responsive table plugin for stacking tables on small screens. The purpose of stackable js is to give you an easy way to convert wide tables into a format that works best on small screens. Creates a copy of the table that is converted to a two-column key/value format.

jquery responsive table, jquery vertical table, stack table, stackable js cdn, responsive table library, responsive tables js, jquery grid table

Options

  • myClass: Classes are separated by a space to add to the table.
  • headIndex: Use this to specify the index of the header row, if it is not the first.

How to make use of it:

1. The Markup structure.

<a id="run" href="#">run ยป</a>
<table id="simple-example-table" cellspacing="0">
  <tbody>
    <tr align="left">
      <th width="30%">Stuff</th>
      <th width="12%">Rate</th>
      <th width="12%">Amount</th>
      <th width="12%">Points</th>
      <th width="12%">Number</th>
      <th width="18%">Type</th>
      <th width="12%">Name</th>
    </tr>
    <tr>
      <td>Something</td>
      <td>3.375%</td>
      <td>$123.12</td>
      <td>1.125</td>
      <td>4,000</td>
      <td>Potato</td>
      <td>Paul</td>
    </tr>
    <tr>
      <td>Something Else</td>
      <td>2.750%</td>
      <td>$345.23</td>
      <td>5</td>
      <td>180</td>
      <td>Spaceship</td>
      <td>Skippy</td>
    </tr>
    <tr>
      <td colspan="7" class="sub">Subgroup Header</td>
    </tr>
    <tr>
      <td>Another Thing</td>
      <td>3.375%</td>
      <td>$563.12</td>
      <td>222</td>
      <td>60</td>
      <td>Gym Shoe</td>
      <td>George</td>
    </tr>
    <tr>
      <td>Thing w/Less Stuff</td>
      <td></td>
      <td></td>
      <td></td>
      <td></td>
      <td>Harmonica</td>
      <td>Helga</td>
    </tr>
    <tr>
      <td>Last Thing</td>
      <td></td>
      <td></td>
      <td></td>
      <td>4</td>
      <td>Meaning of Life</td>
      <td></td>
    </tr>
  </tbody>
</table>

2. Include the jQuery library and the stacktable.js plugin on the web page.

<link rel="stylesheet" href="/path/to/stacktable.css" />
<script src="/path/to/cdn/jquery.min.js"></script>
<script src="/path/to/stacktable.js"></script> 

3. Call the plugin on the HTML table and achieved.

$(document).on('click', '#run', function(e) {
  e.preventDefault();
  $('#simple-example-table').stacktable();
  $(this).replaceWith('<span>ran</span>');
});

4. Add an additional CSS class to the table.

$('#simple-example-table').stacktable({
  myClass: 'your-custom-class'
});

5. Specify the row index of the header, in case it is not the primary.

$('#simple-example-table').stacktable({
  headIndex: 2
});

6. Card table works equally to stack table beside it breaks every row into its personal table.

$('#simple-example-table').cardtable();

7. An different responsive design creates a duplicate of the table right into a 2 column key/value format that preserves the columns of the unique table.

$('#simple-example-table').stackcolumns();

Stacking Tables On Small Screens, stacktable.js Plugin/Github


See Demo And Download

Official Website(johnpolacek): Click Here

This superior jQuery/javascript plugin is developed by johnpolacek. For extra Advanced usage, please go to the official website.

Related Posts

VenoBox-Responsive-jQuery-Lightbox-Plugin

Responsive Image Gallery Lightbox jQuery Plugin | VenoBox

VenoBox is a responsive jQuery modal window plugin suitable for images, embedded content, iFrames, Google Maps, Vimeo, and YouTube videos. The big difference compared to many other…

bootstrap-dropdown-on-hover

[Animation] Bootstrap Multi-Level Responsive Dropdown Menu

Bootstrap-based multi-level dropdown navigation menu with cool animations. The dropdown on Hover is a jQuery plugin used to create Bootstrap multi-level scroll-triggered dropdown menus with CSS3 animations…

Google-Translate-Dropdown-Customize-With-Country-Flag

Google Translate Dropdown Customize With Country Flag | GT API

Flag google translates jQuery text that takes advantage of the Google Cloud Translation API to translate web content between languages by selecting a country from the dropdown…

Bootstrap-Fileinput

HTML 5 File Input Optimized for Bootstrap 4.x./3.x with File Preview | Bootstrap Fileinput

bootstrap-fileinput is an improved HTML 5 file input  Bootstrap 5.x, 4.x and 3.x with file preview for different files, provides multiple selections, resumable section uploads, and more….

HStack-and-VStack-in-CSS

CSS Layout Components Horizontal/Vertical Stack | HStack and VStack

HStack and VStack in CSS – CSS layout components that (basically) stack anything horizontally and vertically. A pure CSS library that makes it easy to stack elements…

Floating-Whatsapp-Chat-Button

How to Add Floating Whatsapp Chat Button In HTML | venom-button

Venom Button is a very simple plugin for the jQuery floating WhatsApp button. Adds a floating button to your site that calls WhatsApp Click to Chat API. It will automatically start the WhatsApp…

Leave a Reply

Your email address will not be published. Required fields are marked *