QUOTA_EXCEEDED_ERR
$(function() {
addBasketEL.click(function() {
if (selectedContainerEL.length) {
$(this + " .js-selectedCard").remove();
$("button").removeClass("active");
addSelectedCard(selectedContainerEL);
$(this).addClass("active");
} else {
addSelectedCard(selectedContainerEL);
$(this).addClass("active");
}
$(".js-btnDelete").click(function() {
$(this)
.parent()
.remove();
});
});
});
<?php
$args = array(
'order' => (isset($_GET['dir']) ? $_GET['dir'] : 'ASC')
);
query_posts( $args );
?>
<a href="http:example.com/yourpage.php?dir=DESC">Newest to Oldest</a>
<a href="http:example.com/yourpage.php?dir=ASC">Oldest to Newest</a>
$(document).ready(function() {
if('#my-input').val().length > 0) {
$('#my-form').preventDefault()
}
})
$('#mobile').show()
. Мой первый и второй код должен работать $(document).ready(function() {
if ($(window).width() < 768) {
if (localStorage.getItem("modal") == null) {
$("#mobile").show();
}
$("#mobile span").click(function() {
$("#mobile").hide();
localStorage.setItem("modal", "off");
});
}
});