Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.
Please keep in mind:
xxshabsxx said:First of all, why use internet explorer?
You should code into the website a warning if IE is detected. It's just that bad a browser, that if it doesn't work...then you deserve it.
Anyway I've tried on IE 9 and IE 8 and I don't see a problem. Could be just you?
It's a small easy javascript or php script. Just google detect user agent (ie 8) and if ie 8 is detected do whatever...Mcmar said:xxshabsxx said:First of all, why use internet explorer?
You should code into the website a warning if IE is detected. It's just that bad a browser, that if it doesn't work...then you deserve it.
Anyway I've tried on IE 9 and IE 8 and I don't see a problem. Could be just you?
how to detect ie and give them a warning that functions might not work 😀 ?
I know it is a javascript, and i have been googling before, but isnt there somone already made, for internet explorer :| that i can just paste in my header?Avast said:detect user agent (ie 8) and if ie 8 is detected
Mcmar said:I know it is a javascript, and i have been googling before, but isnt there somone already made, for internet explorer :| that i can just paste in my header?Avast said:detect user agent (ie 8) and if ie 8 is detected
<!--[if IE 8]>
<script type="text/javascript">
$().ready(function() {
$('#iediv').fadeIn();
alert("This site does not support IE 8, Please use Firefox , Chrome .....");
});
</script>
<div id="iediv" style="display:none; z-index:9991; width: 40%; height: 40%; background: #fff; color: #000;" >
<div class="content">
We don't support IE 8.
</div>
</div>
<div id="overlay" style="background:#000; opacity:0.7; width:100%; height: 100%; z-index:9990;"></div>
<![endif]-->