
I am new to CSS and javascript.
I have one search text box in which I can add any search value. After entering the wrong value, one pop-up div appears and says "no records were found" (with a close button to close the div). after I placed the cursor in the text box without closing the popup. my cursor is displayed above the div field.
| ------------------ | search box | | ------------------ |
Css text box properties.
z-index: 200630; position: absolute; width: 149px; height: 21px; overflow: visible; top: 0px; cursor: default; left: 0px;
My div element is css prop:
z-index: 201350; position: absolute; width: 270px; height: 20px; overflow: hidden; top: 0px; cursor: default; left: 0px;
How to hide cursor under div.Issue element only happens in IE
I created a small jsfiddle.Issue in IE 8 but not FF http://jsfiddle.net/raj31/LUaej/1/
source share