1

How to type into a text box or click a button ,which has a overlaying div. I need to access the text box even though there is a div or image over it.Please help.

Karthik
  • 74
  • 8

1 Answers1

1

Try this:

pointer-events: none;

This will make any mouse event "fall through" the element.

Note: however, that this will be applied to all child elements too, so any element you might want to click (a link or so) will be inaccessible.

Tushar Gupta
  • 15,504
  • 1
  • 29
  • 47
Christo Jose
  • 325
  • 4
  • 16