Click here to Skip to main content
15,884,176 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i am using third party controller obout slide menu..it works good in mozilla,opera and chrome..why it is not working in IE?how to solve my problem?
any help will be appreciated...thank you
Posted
Comments
phil.o 17-Dec-15 6:41am    
You should ask that where you found this third party product.
User-11630313 17-Dec-15 6:44am    
k tq
Ebenezar John Paul 17-Dec-15 7:13am    
May be it is not supported in internet explorer. One way to find out at the earlier stage is to read the third party component's documents before using it in your application. If you are lucky you might get support from them.
ZurdoDev 17-Dec-15 8:10am    
How could we possibly even begin to know why it isn't working. We can't see a single thing you have done. Do you expect us to guess? Do you think there is only 1 possible reason some 3rd party product wouldn't work?

Can you tell me why my code isn't working right now?

1 solution

There are two possibilities

1) Your 3rd Party Control is not supporting IE
2) You are using older version of IE

Update you IE and Write Codes to Handle the Width of your control using CSS

for ex:
.test{
-moz-opacity: 0.6;
-ms-opacity: 0.6;
-webkit-opacity: 0.6;
opacity: 0.6;
}

You can refer to
http://code.tutsplus.com/tutorials/9-most-common-ie-bugs-and-how-to-fix-them--net-7764

I think you can now able to fix this issue. Let me know for other queries
 
Share this answer
 

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

  Print Answers RSS
Top Experts
Last 24hrsThis month


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