function getProductData(productId, callback) {
setTimeout(function(){
callback('wow such asynchronously');
}, 3000);
}
function addToCart(productId) {
getProductData(productId, function(product) {
console.log(product);
});
}
addToCart(); // 'wow such asynchronously'
ol[start="4"] {
counter-reset: customNumList 3;
}
attr()
, но она работает только в свойстве content
. т.е. сделать вот так:ol {
counter-reset: customNumList attr(start);
}
не получится return false не заработает. Никак.
Returningfalse
from an event handler will automatically callevent.stopPropagation()
andevent.preventDefault()
. © https://api.jquery.com/on/
background-position
и background-size
background: 50% 20% 10px;
background-position: 50%;
background-size: 20% 10px;
или так:background-position: 50% 20%;
background-size: 10px;
background: 50%/20% 10px;
/*или так*/
background: 50% 20%/10px;