Skip to main content

All Questions

0 votes
1 answer
745 views

IE 11 - sessionStorage not being removed or cleared for new tabs or windows

I am using the sessionStorage objects in the angular project to save some data for processing. Somehow it is behaving very weird in the IE 11 browser. sessionStorage.setItem('data-x', '1000'); ...
Karan's user avatar
  • 3,328
0 votes
1 answer
336 views

Internet Explorer and drop-down list issue

I have a <select>dropdown with a long list of <optgroup>. The dropdown is created as a separate component in Angular5 and it does some processing before segregating into <optgroup>. ...
Arun's user avatar
  • 3,811
2 votes
2 answers
3k views

Angular 5 : How to solve "Headers not defined" error on Internet Explorer 11?

I'm getting the following error whenever Headers are used by the Angular 5 application on Internet Explorer 11. ERROR ReferenceError: 'Headers' is undefined The content of the polyfills file are ...
Vihan De Silva's user avatar
1 vote
1 answer
2k views

Render PDF in Edge and IE11 in an Embed

I thought I had a solution for this using an embed so that Adobe would render the PDF in the browsers when I did: <embed src="./assets/pdf/example-1.pdf" width="100%" height="675px" ...
mtpultz's user avatar
  • 18k
0 votes
1 answer
2k views

Detect IE11 in Angular 5 and suppress "property doesn't exist" warnings

I'm working on custom directive which requires scroll position. I found all major browsers support window.scrollY while IE11 needs document.documentElement.scrollTop so I'm trying to determine if ...
godblessstrawberry's user avatar
2 votes
3 answers
4k views

Internet Explorer 11 - Not able to check input type checkbox in angular 5

Using input type checkbox and ngmodel, ngmodelchange, checked attribute of angular. Please check below. <input type="checkbox" [checked]="item.selected" [(ngModel)]="item.selected"/> Checkbox ...
Dinesh N.K's user avatar