I have a jQuery code which is working fine for Chrome/Mozilla but not IE.
if ($(\"html\").hasClass(\"ie\")) { $(function(){ $(\'.green-column, .
Can be achieved without using libraries or conditional compilation:
if (document.addEventListener) { alert("IE9 or greater"); } if (window.requestAnimationFrame) { alert("IE10 or greater"); }