function findCurrenciesByValue(array $data, $value) {
$currencies = [];
foreach ($data as $currency=>$currencyValues) {
if (in_array($value, $currencyValues)) {
$currencies[] = $currency;
}
}
return $currencies;
}
function findFirstCurrencyByValue(array $data, $value) {
$currencies = findCurrenciesByValue($data, $value);
if (empty($currencies)) {
return null;
} else {
return $currencies[0];
}
}
function findFirstCurrencyByValue(array $data, $value) {
$firstCurrency = null;
foreach ($data as $currency=>$currencyValues) {
if (in_array($value, $currencyValues)) {
$firstCurrency = $currency;
break;
}
}
return $firstCurrency;
}
round(202592.00, -2);
$.getJSON('https://minecraftpocket-servers.com/api/?object=servers&element=voters&key=ruc7ov3m2v4w7fqeq6np8fhivep48w', function(data) {
var votes = 0;
for(var i=0; i<data.voters.length; i++){
votes += JSON.parse(data.voters[i].votes)
}
$('#someDivId').html('голосов: ' + votes + ' проголосовавших: ' + data.voters.length);
});
io.on('connection', socket => {
socket.on('disconnect', () => {
// ваш код
})
})
$(function(){
$("p#append").click(function(){
$(this).append("<div class='div'></div>");
});
});
который создавал бы элемент по имени и затем снабжал его классом, а потом присоединял бы к указанному.$(function(){
$("p#append").click(function(){
$('<div />').addClass('div').appendTo($(this));
});
});
$(function(){
$("p#append").click(function(){
$('<div />').add('<div />').addClass('div').appendTo($(this));
});
});
$(function(){
$("p#append").css('color', 'red');
});
налагает свойство{color: 'red';}