I want angularjs solution for this problem.
I am working in angular JS and I am disabling anchor link using css style.
This works fine with Chrome and Firefox but not with IE. I am able to click the link even if it is shown as grayed out. Jquery is not allowed . How to achieve disabled anchor link for IE without jquery?
**css style**
a.offline {
pointer-events: none;
}
Thanks