Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a drop down navigation menu in which some of the title should not navigate to other page when clicked(these title open a drop down menu when clicked on) while others should navigate (these dont have dropdown and navigate directly).However, both types have href defined to them

To solve this i added the following css for the former type of titles

pointer-events: none;

and it is working fine.But since this property is not supported by IE, i am looking for some work-around. The annoying thing is that i don't have access and privilege to change the HTML and JavaScript code completely.

Any ideas?

share|improve this question
1  
Is there a way to gain access to the HTML and scripts? Try talking to whoever gave you the task. – Kyle Sevenoaks May 2 '11 at 8:55
@Kyle Its not exactly a problem of privilege,there are some technical difficulties also to modify the html/javascript code – anu May 2 '11 at 8:57
Here is the answer stackoverflow.com/questions/3680429/… – Sanket May 11 '12 at 8:49

2 Answers

up vote 36 down vote accepted

Pointer-events is a Mozilla hack and where it has been implemented in Webkit browsers, you can't expect to see it in IE browsers for another million years.

There is however a solution I found:

Forwarding Mouse Events Through Layers

This uses a plugin that uses some not well known/understood properties of Javascript to take the mouse event and send it to another element.

There is also another Javascript solution here.

share|improve this answer
3  
Documentation of ie9 says it supports this property(i've not tried ie9 yet however).Anyway, i already had ideas in my mind which are given in the links but as i was looking for some css specific solution i cannot use them. I will try to modify the html/js code rather spending time on this problem.Thanks a lot for your time and help – anu May 2 '11 at 9:16
The page was down when I checked, but here's some code the author wrote for the ext.js library that accomplishes the same: code.google.com/p/ext-ux-datadrop/source/browse/trunk/src/… – Ben Alpert Sep 30 '11 at 15:39
19  
+1 for this "to see it in IE browsers for another million years. " – Tushar Ahirrao Mar 26 '12 at 5:51
1  
No explanation for the downvote? Very mature. – Kyle Sevenoaks Sep 28 '12 at 7:25
3  
At W3C, this issue went under debate due to click-hijacking. Rule of thumb: as soon as W3C publish the candidate recommendation, IE team will implement it & there's always a lesson in haste makes waste. Besides, Mozilla said it all "Warning: The use of pointer-events in CSS for non-SVG elements is experimental. The feature used to be part of the CSS3 UI draft specification but, due to many open issues, has been postponed to CSS4." – vulcan raven Sep 28 '12 at 7:40
show 1 more comment

There's a workaround for IE - use inline SVG and set pointer-events="none" in SVG. See my answer in How to make Internet Explorer emulate pointer-events:none?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.