I would love to hear your thoughts on this particular problem:
I'm using LinkedIn's button functionality and it comes likes this:
<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 renders very poorly in IE6, so all I want to do is to hide that button in IE6, I've thought about using the <!--[if gte IE 7]>Javascript code here<![endif]--> but that would also prevent it from loading in any other browser than IE, an other option would be to use the jquery: if($.browser.msie && $.browser.version=="6.0"){ } but how do I do that with SRC javascript files?
Any thoughts? Thanks!