Elements can be easily disabled from receiving mouse events using, in your example, the following CSS:
#region2 {
pointer-events: none;
}
For more discussion, see this SO post.
Elements can be easily disabled from receiving mouse events using, in your example, the following CSS:
#region2 {
pointer-events: none;
}
For more discussion, see this SO post.