почему то не работает добавил версию:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script>
jQuery(function($){
$.ajax({
url: 'http://api.vk.com/method/groups.getById?gid=27541941&v=5.9&fields=members_count', // вместо 65762432 указываем свой ID
dataType: "jsonp", // тип получаемых данных
success:function(e){
$('#vkontakte_count').html(e.response[0].members_count); // выводим получаемый результат
}
});
});
</script>
<span id="vkontakte_count" style="font-weight: bold;"></span>