I want to make a div with position:fixed that will overlap the content, but not clickable, i.e. when you click in that div's area you are clicking on the content under it. So the text under the div could be easily selected. Is there a way to do that?
|
The solution is to add This is demonstrated here: http://jsfiddle.net/nayish/7hHvL/. You'll notice that the alert, which is set only for the bottom div, works also when clicking on the overlaying div. |
||||
|
|
You might have to use a
|
|||
|
|
|
Whatever is on displayed in front is also what is being clicked on. one way to handle that is to make a transparent graphic for the links that appears over the links and zindex that transparent image in front of the position absolute content. Easy to do if the links are menu buttons with a known size. Update an example
The img position:absolute remains at current screen position over the div menu button. zindex will push it in front of the fixed content. It is easy if you know the space for the link that is covered up. |
||||
|
|
Correct me if i am wrong but the solution given by Nayish :
This solution is not supported by all browsers like I.E You can see the compatibility table for support of pointer-events in desktop and mobile browsers. Solutions given by Kasturi could work in some cases but if the content under the div (with position:fixed) is moving, the transparent graphic for the links will stay fixed and the link behind it will be at an other position. Ps : It would be better to comment directly Nayish's and Kasturi's answer but i don't have enough reputation on stack Overflow. |
|||
|
|
pointer-events: nonemay do it... – josh.trow Aug 24 '11 at 21:28