Hi everyone. I will write shortly, because I dont know english good.. So I need script, which will detect users browser, and if browser will be IE, then show some link in content, if browser is FireFox or Opera, then hide that link. Link looks like: <tr> <td align='center' valign='top'><a href='/' target='_blank'>link</a></td> </tr> Code (markup): Thanks to all for any help!
<script type="text/javascript"> if (navigator.appVersion.indexOf("MSIE")!=-1) document.write("<tr><td align='center' valign='top'><a href='/' target='_blank'>link</a></td></tr>"); </script> Code (markup):
Thanks giraph! The html way: <!--[if IE]> <p>You are using IE</p> <![endif]--> <!--[if !IE]>--> <p>You are not using IE</p> <!--<![endif]--> Code (markup):