Posted on: 11/8/2014 8:05:02 PM | Views : 399

In code below, I am trying to change the style if the browser is IE11, but the style attributes are not showing up. At least the body background color should be light green so that the HELLO div has a background color of light green when page is initially rendered on a desktop browser.
My question: I tried the code below and found it is not working.  Is there some other way of doing this dynamic styling , or I am missing something in code below? Also, what would be correct way of achieving this same dynamic styling, if the code below is not correct?
<!DOCTYPE html> <html> <head> <script type="text/javascript"> if( navigator.userAgent.indexOf("Trident") > 0 ) { //ADD code for IE browser alert( navigator.userAgent.indexOf("Trident") ); <style> body { ...

Go to the complete details ...