Is it possible to suppress the default IE 7 functionality when CTRL+click on link opens a new window? if so, how?
Thanks!
|
Is it possible to suppress the default IE 7 functionality when CTRL+click on link opens a new window? if so, how? Thanks!
| |||||||||
feedback
|
|
There is no way to suppress a Ctrl+Click on a link in Internet Explorer -- the I searched for some sort of official confirmation/explanation before posting this answer, but unfortunately this limitation is not listed in the documentation on MSDN and Google wasn't helpful. Never-the-less, it remains true, try it yourself:
You will find that a Ctrl + click on the link will not throw the alert box. | |||
feedback
|
|
The jQuery event.preventDefault() method or similar can override default behavior on pages that you have control over. It is generally bad practice to alter the behaviour of a user's browser without really good reason as the browser and its behaviour is "their's". | |||
feedback
|
|
had the same problem as the op and solved it by giving the anchor href attribute an '#' and an additional data-href attribute with the corresponding link location. The downside you need a click handler to follow the link, also right clicking "open in new window" wont work with this approach.
| ||||
|
feedback
|
|
Add script to the anchor and return false
And it is valid to use anchors in a treeview because it makes the treeview more accessible. | |||
|
feedback
|
|
Using jquery you can handle the ctrl+click functionality for yourself and return false, for example
this works across all browsers including mac | |||
|
feedback
|