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

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -