Any idea to make id(enemy) to trigger display:none when bullet reach its position?

What you are looking to implement is called collision detection, game engines often have helpers to help you in this common task.

If you want to roll your own, you can simply detect if the two rectangles are overlapping, or in other words knowing the position and size of two rectangles you should know if they overlap by comparing sizes.

Hope it helps :slight_smile: