Necesito ayuda con un codigo quiero hacer una function para despues hacer ajax, tengo una tabla cada fila tiene sus datos y en un td lo que quiero hacer es que pueda poner una palomita y aplicar ajax tengo lo siguiento pero no me da
Código Javascript:
Ver original
function checkear(numero){ $.ajax({ type : 'POST', url : 'checkear.php', cache : false, data : 'id=' + numero , beforeSend : function(){ $(this).html("sirve"); } success: function(data){ $(this).html("sirve"); } }) }
Intente poniedo un td como referencia y despues el this asi
function checkear(numero){
$('td').click(function(){
$(this).html('sirve');
})
y asi si sirve pero cuando quiero aplicar ajax no sirve
Código Javascript:
Ver original
function checkear(numero){ $('td').click(function(){ $.ajax({ type : 'POST', url : 'checkear.php', cache : false, data : 'id' , beforeSend : function(){ $(this).html("sirve"); } success: function(data){ $(this).html("sirve"); } })
No tengo idea como hacerle si alguien me ayuda por favor
Gracias