id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blocking	blockedby
2088	Table sorter is not working fine	saravanan	christian	"<!DOCTYPE HTML PUBLIC ""-//W3C//DTD HTML 4.01 Transitional//EN"" 
                    ""http://www.w3.org/TR/html4/loose.dtd"">
<html>
<head>
<script type=""text/javascript"" src=""../../jquery/jquery.js"" ></script>
<script type=""text/javascript"" src=""../../jquery/class/jquery.tablesorter.pack.js""></script>
 
  <script>
  $(document).ready(function(){
    $(""#example"").tablesorter(); 
  });
  </script>
  
</head>
<body>
<link href=""../../../../css/data.css"" rel=""stylesheet"" type=""text/css"">
<?php

$aListRs		=	""result that ia am getting from db"";

?>
<table align=""center"" id=""example"" width=""90%"" cellpadding=""3"" cellspacing=""2"" class=""lisingTableBorder"" >
	<thead>
		<tr bgcolor=""#666666"" class=""listingHeader"" style=""cursor:pointer"">
			<td>Product Id</td>
			<td>Product Name</td>
			<td>Product Desc</td>
		</tr>
	</thead>
	<tbody>
	<?
		for ($i=0;$i<=$vTotList;$i++)
		{
	?>
		<tr>
			<td><?=$aListRs[$i]?></td>
			<td><?=$aListRs[$i]?></td>
			<td><?=$aListRs[$i]?></td>
		</tr>
	<?
		}
	?>
	</tbody>
</table>
</body>
</html>


if i am using like that means its not working for table sorter so please check it and send the smaple coding.
"	bug	closed	major	1.2.2	plugin	1.2.1	invalid	tablesorter			
