“Guardar Action Hide Element en jQuery” Código de respuesta

jQuery oculta

$('#yourid').attr('hidden', false);
$('#yourid').attr('hidden', true);
butterfly

Guardar Action Hide Element en jQuery

$(function() {
    if (Cookies.get('RemoveCount') == 'true' && Cookies.get('RemoveCount') != 'undefined') {
        $("#count").hide();
    } else {
        $("#count").show();
    }
}
Troubled Tamarin

Guardar Action Hide Element en jQuery

<html>
<head>
<script
  src="https://code.jquery.com/jquery-3.1.1.min.js"
  integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
  crossorigin="anonymous"></script>
<script src="../js.cookie.js"></script>
</head>
<body>
    <button id='clckced'> removeCount</button>
    <div id="RemoveCount">
    This should be removed.
    </div>
    <script>
        $(function(){
            if (Cookies.get('RemoveCount') == 'true' && Cookies.get('RemoveCount') != 'undefined' ){
                $("#RemoveCount").hide();
                } else {
                    $("#RemoveCount").show();
                }
            $('#clckced').click(function(){
                Cookies.set('RemoveCount', 'true');
                $("#RemoveCount").hide();
            })
        });
    </script>

</body>
</html>
Troubled Tamarin

Respuestas similares a “Guardar Action Hide Element en jQuery”

Preguntas similares a “Guardar Action Hide Element en jQuery”

Más respuestas relacionadas con “Guardar Action Hide Element en jQuery” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código