$(document).ready(function() { $(".favorite").live('click', function() { if($(this).attr('checked')=='checked') { // remove as favorite and do call back var did = $(this).attr('id').replace('favorite-',''); var thisObj = $(this); $.get('/item/menu_listener.php', {did:did,action:'remove',rand:(Math.floor(Math.random()*1000000))}, function(data) { if(data=='ok') { thisObj.removeAttr('checked').html('Add to my menu'); thisObj.removeClass('faved'); } else { location.href='/login.php'; } }); } else { var did = $(this).attr('id').replace('favorite-',''); var thisObj = $(this); $.get('/item/menu_listener.php', {did:did,action:'add',rand:(Math.floor(Math.random()*1000000))}, function(data) { if(data=='ok') { thisObj.attr('checked','checked').html('Remove from my menu'); thisObj.addClass('faved'); } else { location.href='/login.php'; } }); } }); });