This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('table').each(function(table_count) { | |
var table = $(this); // cache table object | |
var headers = table.find('thead th').clone(); // Clone so original table stays intact | |
var labels = table.find('tbody tr td:first-child').clone(); // Clone so original table stays intact | |
// Number of columns to ignore | |
var offset_columns = 1; | |
var group_wrapper_class = 'mobile_table_group'; | |
var group_wrapper_id = group_wrapper_class + '_' + table_count; | |
var table_wrapper_class = 'mobile_table_wrapper'; | |
var table_wrapper_styles = 'float: left; margin-left: 20px'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"><![endif]--> | |
<!--[if IE 7]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]--> | |
<!--[if IE 8]><html class="no-js lt-ie9" lang="en"><![endif]--> | |
<!--[if gt IE 8]><!--><html class="no-js" lang="en"><!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<title>Title</title> | |
</head> | |
<body> |