<span id="ok_count"></span > участников
<script>
jQuery(function($){
$.ajax({
url: 'https://api.ok.ru/fb.do?application_key=XXXXXXXXXXXXXXXXXXXXXXXXX&fields=members_count&format=json&method=group.getInfo&move_to_top=false&uids=XXXXXXXXXXXXXXXXXXXXXXXXX&sig=XXXXXXXXXXXXXXXXXXXXXXXXX&access_token=XXXXXXXXXXXXXXXXXXXXXXXXX',
dataType: 'json',
success:function(data){
$('#ok_count').html(data[0].members_count)
}
});
});
</script>