I would like to hear your thoughts on this particular issue:
I use the functionality of the LinkedIn button, and this comes about:
<script src="http://platform.linkedin.com/in.js" type="text/javascript"></script>
<script type="IN/MemberProfile" data-id="http://www.linkedin.com/pub/profile" data-format="click" data-text="LinkedIn Profile"></script>
The only problem is that it works very poorly in IE6, so all I want to do is hide this button in IE6, I thought about using it <!--[if gte IE 7]>Javascript code here<![endif]-->, but it would also prevent it from loading in any other browser than IE, another option is to use jquery: if($.browser.msie && $.browser.version=="6.0"){ }but how do I do this with javascript SRC files?
Any thoughts? Thank!
Phil source
share