jQuery(document).ready(function($){ $('#footer') .delegate('.b-share-btn__linkedin', "click", function(e) { share_ajax('linkedin'); }) .delegate('.b-share-btn__vkontakte', "click", function(e) { share_ajax('vkontakte'); }) .delegate('.b-share-btn__facebook', "click", function(e) { share_ajax('facebook'); }) .delegate('.b-share-btn__twitter', "click", function(e) { share_ajax('twitter'); }); function share_ajax(type) { $.post( "/rating_click_share/ajax", { "func": "rating_click_share", "path": location.pathname, "type": type, }, function (data) { }, "json" ) } });