Barksalot: Bei Klick auf checkbox Update ausführen und Text durchstreichen

Beitrag lesen

Hallo dedlfix,

die Schreibweise die ich unter jQuery kenne ist folgende

$(document).ready(function() { 
	
	$('.todo').click(function() {

		var formData = {
         'todo': $('input[name=code]').val()
        };

		$.ajax({
			
			url:"updateToDo.php",
			type:"post",
			data:formData,
		 
			success:function(d) {
		  		
		  		if($("input:checked")){
					$(this).next('span').addClass("done");
				}

				$( "input:not(:checked) + span" ).removeClass("done");
			}
		});
    }); 
}); 

Bis bald!
Bernd