1

I am using nodeJS to automate my javascript web app developement, and I always has to ensure the app works fine in all browsers including IE >=8 , now I have IE10 installed on my laptopn ,and I am using grunt-contrib-connect package to open the app in multiple browsers using the connect task like this

connect: {
      server: {
        options: {
          keepalive: true,
          port: 3001,
          hostname: 'localhost',
          base: '.',
          index: 'fab_1-3.app.htm',
          open: {
              target: 'http://localhost:3001/fab_1-3.app.htm',
              appName: 'iexplore'
          }
        }
      }
    }

Now , what I want is it to open in IE specifying the document mode and browser mode as well(using nodeJS/grunt) , is it possible to do that ?

Thanks in advance!

Deepika Guliani
  • 64
  • 1
  • 12

1 Answers1

0

Use the following process:

Community
  • 1
  • 1
Paul Sweatte
  • 24,148
  • 7
  • 127
  • 265