(function($){ $(document).ready(function(){ $(".like_it").click(function(){ var post_id = jQuery(this).attr("id"); post_id = post_id.replace("like-", ""); $.ajax({ type: "POST", url: "http://themeforest.unitedthemes.com/wpversions/nevada/1/wp-content/themes/nevada/functions/ajax-request.php", data: "post_id=" + post_id + "&num=" + Math.random(), success: function(data){ jQuery("#liked-" + post_id).html(data.like); jQuery("#like-" + post_id).find('span').removeClass('lambda-unlike').addClass('lambda-like'); }, dataType: "json" }); }); }); })(jQuery);