I have the following css in my style sheet, which Im applying to a div, to disable the hyperlinks in that div in certain conditions. But the style is working ine in FF but not in IE. What is the flaw in the style? Also can anyone let me know how to disabel a hyperlink, in IE and FF as well?
pointer-events: none;
cursor: default;
Basically I have pagination and to disable "prev" and "next" buttons im applying the above style.
Can someone pls provide a solution..