For your original request, the IE thing the code is below, it's in javascript:
Pretty straight forward.... if their browser is any version of MSIE then it will display "Site Best Viewed In FF" - hope this helps!Code:<script> version=parseInt(navigator.appVersion); if (navigator.appVersion.indexOf('5.')>-1){version=5}; if (navigator.appVersion.indexOf('6.')>-1){version=6}; if (navigator.appName=='Microsoft Internet Explorer'){browser='MSIE'+version;} if (navigator.appVersion.indexOf('MSIE 3')>0) {browser='MSIE3';} if (browser=='MSIE3') {docment.write(Site Best Viewed In FF)} if (browser=='MSIE4') {document.write(Site Best Viewed In FF)} if (browser=='MSIE5') {document.write(Site Best Viewed In FF)} if (browser=='MSIE6') {document.write(Site Best Viewed In FF)} if (browser=='MSIE7') {document.write(Site Best Viewed In FF)} <script>
EDIT: Invent must have posted while I was writing... sorry?






Reply With Quote

