“Нажмите внешнюю коробку jquery” Ответ

Div Outsing Click Event jQuery

window.addEventListener('click', function(e){   
  if (document.getElementById('clickbox').contains(e.target)){
    // Clicked in box
  } else{
    // Clicked outside the box
  }
});
Shy Sandpiper

Нажмите внешнюю коробку jquery

$(document).click(function(){
 $("#try").hide(); 
});

$("#try").click(function(e){
  e.stopPropagation(); 
});
A D Bhowmick

Нажмите внешний элемент jQuery

    $(document).click(function (event) {
        var $target = $(event.target);
        if (!$target.closest('.modal-dialog').length && $('.modal-dialog').is(":visible")) {
            console.log("clicked outside the element")
        }
    });
Filthy Flatworm

Внешний щелчок на Div Hide Div в jQeury

<script>
$(document).mouseup(function(e){
    var container = $("#elementID");

    // If the target of the click isn't the container
    if(!container.is(e.target) && container.has(e.target).length === 0){
        container.hide();
    }
});
</script>
Talented Toad

Нажмите внешнюю коробку jquery

<body>
  <p id="try">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.

</p>
</body>
A D Bhowmick

Ответы похожие на “Нажмите внешнюю коробку jquery”

Вопросы похожие на “Нажмите внешнюю коробку jquery”

Больше похожих ответов на “Нажмите внешнюю коробку jquery” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования