Skip to content

gean01/fixed-header

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

fixed-header

A jQuery plugin to create tables with fixed header.

<html>
<head>
	<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
	<script src="./fixedHeader.js"></script>
</head>
<body>
	<div id="box">
		<table id="my_table">
			<tr>
				<th>Header 1</th>
				<th>Header 2</th>
			</tr>
			<tr>
				<td>Row 1, Column 1</td>
				<td>Row 1, Column 2</td>
			</tr>
    </table>
	</div>
	<script>
	$("#my_table").fixedHeader(100);// 100 px of height for the table
	</script>
</body>
</html>

About

jQuery plugin to create tables with fixed header

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published