Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I don't suggest you to use client side as some browsers might trick you by passing wrong values to pass website tests. </p> <p>So i guess your using PHP as a server side you can detect the browser using the <code>get_browser()</code> function that give you a lot of information about the browser here is a nice turtoeial: </p> <p>Part 1: </p> <p><a href="http://thenewboston.org/watch.php?cat=11&amp;number=67" rel="nofollow">http://thenewboston.org/watch.php?cat=11&amp;number=67</a></p> <p>Part 2: </p> <p><a href="http://thenewboston.org/watch.php?cat=11&amp;number=68" rel="nofollow">http://thenewboston.org/watch.php?cat=11&amp;number=68</a> </p> <p>if your using another language all server side language has this functunality just google it or reference some sort of a turtorial</p> <p>From the client side you can detect if it is compatible like that: </p> <pre><code>function Is_Compatible(){ var browser = navigator.appName; var Fvar = document.getElementById('test').style.borderRadius; if(browser !== 'Microsoft Internet Explorer'){ return false; } if(Fvar == undefined){ //Not IE9+ return false; }else{ //Is IE9+ return true; } } if(Is_Compatible() == true){ alert('Compatible'); }else{ alert('uncompatible'); } </code></pre> <p>HTML: </p> <pre><code>&lt;div style="border-radius:20px;opacity:0;z-index:-500;" id="test"&gt;&lt;/div&gt;&lt;!--It willl not inflect your design--&gt; </code></pre> <p>FIDDLE: </p> <p>Test it and it works: </p> <p><a href="http://jsfiddle.net/Z7fvb/" rel="nofollow">http://jsfiddle.net/Z7fvb/</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload