I am starting to learn jquery and I tried to change the background colour and alert it with callback and it doesn't work probably something in my syntax is missing...
$("#b").click(function(){
$("body").css("background-color,yellow",function(){
alert("background-color has changed successfully");
});
});
Thanks in advance for the help! :)