<script type="text/javascript" src="js/jquery-1.2.js"></script> <script type="text/javascript" src="js/ingrid.js"></script><link rel="stylesheet" href="css/ingrid.css" type="text/css" media="screen" />
<table id="table1"> <thead> <tr> <th>列1</th> <th>列2</th> <th>列3</th> </tr> </thead> <tbody> <tr> <td>データ11</td> <td>データ12</td> <td>データ13</td> </tr> <tr> <td>データ21</td> <td>データ22</td> <td>データ23</td> </tr> </tbody> </table>
<script type="text/javascript">
$(document).ready(
function() {
$("#table1").ingrid({
url: 'remote.html',
height: 350
});
}
);
</script>