Click here to Skip to main content
15,886,788 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
Please open any website like msn.com or yahoo.com and hover the mouse over links you will get underline effect then click on any sub menu and do the same again this time you will notice that underline have still persist under links even you will go to other links on the page. how can we resolve this issue, feel free to ask me if any thing specific required input from my side.

Thanks,
Ambesha
Posted
Comments
Joan M 5-Oct-12 8:31am    
Reposting is not a good thing to do here... you've been here for more than 2 years. You should already know it... :thumbsdown:
Ambesha 5-Oct-12 8:39am    
well have you any resolution/idea about this issue??
Joan M 5-Oct-12 8:47am    
No, no idea.
Richard MacCutchan 5-Oct-12 9:27am    
Why are you asking this here? If you think IE10 contains a bug then report it to Microsoft.

1 solution

I have faced similar issue in my application where the focus still remained on the previously clicked link ,If you are facing the issue in one of your code,you can fix it by using the below code

JavaScript
$(document).ready(function () {
       $("[id$=idofthecontrol]").mousedown(function () { $(tip.tooltip).remove(); return false; });
   });



If you are talking about some strange IE bug ,then better raise it with MS.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900