Buenas tengo un documento html como el que sigue:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="tablesorter.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<table id="tabla" width="681" border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td>HEAD1</td>
<td>HEAD2</td>
<td>HEAD3</td>
</tr>
</thead>
<tbody>
<tr>
<td>Dato1</td>
<td>Dato2</td>
<td>Dato3</td>
</tr>
<tr>
<td>Dato4</td>
<td>Dato5</td>
<td>Dato6</td>
<td></td>
</tr>
</tbody>
</table>
</body>
</html>
Este archivo esta dentro de una carpeta junto a jquery.js que es la libreria de jquery. Y tablesorter.js que tiene lo siguiente:
$(document).ready(function()
{
$("#tabla").tablesorter();
}
);
Mi pregunta es, que es lo que estoy haciendo mal, pues no me funciona, he probado distintas alaternativas y nada. Ayuda porfa!
Muchas gracias