Mira la consola te debe estar dando errores porque le faltan algunos cierres de llaves/paréntesis y algunos puntos y comas.
Código Javascript
:
Ver originalvar checkear = function(numero){
$('td').click(function(){
$.ajax({
type : 'POST',
url : 'checkear.php',
cache : false,
data : 'id=' + numero,
beforeSend : function(){
$(this).html("sirve");
}, success: function(data){
$(this).html("sirve");
}
});
});
};
Aunque creo que sería mejor así (aunque deberías determinar qué es la variable "numero" y cambiar el "$(this)" en la función "checkear"):
Código Javascript
:
Ver originalvar checkear = function( numero ){
$.ajax({
type : 'POST',
url : 'checkear.php',
cache : false,
data : 'id' ,
beforeSend : function(){
$(this).html("sirve");
}, success: function(data){
$(this).html("sirve");
}
});
};
$(function(){
$( 'td' ).click( function(){
checkear( numero );
});
});