Ver Mensaje Individual
  #3 (permalink)  
Antiguo 22/02/2011, 01:06
combuilder
 
Fecha de Ingreso: agosto-2009
Mensajes: 101
Antigüedad: 15 años, 2 meses
Puntos: 0
Respuesta: Ejemplo sencillo con jQuery y TableSort que no funciona

Pues .... sigue sin funcionar
Código HTML:
<html>

<head>
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery.tablesorter.min.js" type="text/javascript"></script>

    <link href="styles.css" type="text/css" rel="stylesheet">
    <link href="tablamaestra2.css" type="text/css" rel="stylesheet">
<script>
$(function( ){
	$("#miboton").live("click", loading);
});
function loading(event)
{
	$("#tablamaestra2").load('data.htm');
	tableando();

}
function tableando() {
	alert("ok0");
	$("#tablamaestra").sorttable();
	alert("ok1");
	$("#tablamaestra").trigger("update");
	alert("ok2");
	$("#tablamaestra").trigger("appendCache");
	alert("ok3");
};
</script>

<title>Ejemplo CSS</title>

</head>

<body>

<a id="miboton">Ver 2</a>
<br>
<div id="tablamaestra2">aqui</div>


</body>

</html> 
Da error entre el OK0 y el OK1, o sea, al aplicar a la tabla el método "tablesort"