javascript - How to hover all elements but avoid some? -
i need able hover elements not all. in case tried not table.
$(".modal-content *:not("table")").on("mouseenter", function() {... update
i had typo, accepting answer.
you have error quotation mark. try this.
$(".modal-content *:not(table)").on("mouseenter", function() {...
Comments
Post a Comment