<script>
jQuery(function($){
$.ajax({
url: 'https://api.ok.ru/fb.do?application_key=APP_KEY&fields=members_count&format=json&method=group.getInfo&uids=IDгруппы&sig=SIG',
dataType: "jsonp",
success:function(e){
$('#OK').html(e.response[0].members_count)
}
});
});
</script>
<span id="OK"></span> участников
$.ajax({
type: "GET",
dataType: "xml",
cache: true,
ifModified: true,
url: "https://api.ok.ru/fb.do?application_key=XXXXXXXXXXXXXXXXXXXXXX&method=group.getInfo&uids=XXXXXXXXXXXXXXXXXXXXX&fields=members_count&sig=XXXXXXXXXXXXXXXXXXXXXXXXX",
success: function(xml) {
$(xml).find('members_count').each(function(){
var name = $(this).text();
$("#ok_count").html(name);
});
}
});
<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>