All Questions
27 questions
1
vote
0
answers
525
views
redirect IE to Edge can only do one time?
I am trying to redirect IE users to Edge since IE is retiring.
My website is built by Angular 7 and I put this code in ngOnInit()
const ua = window.navigator.userAgent;
if (ua.indexOf("MSIE &...
0
votes
1
answer
194
views
Any way to generate a unique and predictable id of the local computer in JavaScript/Angular?
We have several computers running Microsoft Edge (no option to change the browser).
We have a central web server with pages created for each individual computer. I want users of these computers to be ...
1
vote
1
answer
2k
views
The window.Print() function is not working in Microsoft Edge (Version 91.0.864.59) when canceled the first time Angular 12 app
You can reproduce the issue here (using the latest Edge browser version 91.0.864.59):
https://stackblitz.com/edit/angular-ivy-zbvzap?file=src/app/app.component.html
Click on the print button.
Close ...
2
votes
0
answers
648
views
ScrollIntoView doesn't work properly on Microsoft Edge
I was trying to use the scrollIntoView() with smoothscroll.polyfill() but I've tried a couple of times to use this functionality on Microsoft Edge and the text goes on top of screen, but on Mozilla ...
0
votes
1
answer
966
views
Play WAV audio file in Edge with Angular/Javascript
I have following code in Angular to playback a uploaded WAV file:
<input #fileImportInput (change)="fileChangeListener($event)" />
<audio #myAudio controls controlsList="nodownload">
&...
0
votes
1
answer
1k
views
Angular 8 ReactiveForm Input type "file" doesn't recognize value on Edge
I am using private _fb: FormBuilder to build my form in Angular 8. My form is initialized like this
this.itemForm = this._fb.group({
title: ['', [Validators.required, this._systemSvc....
4
votes
1
answer
6k
views
Post method not working in edge browser, but it is working in other browser like Firefox. internet explorer, chrome
I am struggling with a post method in edge browser, while for same request i am getting response in other browsers like Internet explorer, chrome, Firefox but not in edge.
While i have done lot of ...
0
votes
0
answers
205
views
Function expected error while pressing download button
When I am pressing the download button on my website in Microsoft Edge, I am getting the "Function expected" error.
download() {
this.element = document.getElementById("img") as HTMLElement;
...
0
votes
1
answer
1k
views
Angular Input with datalist options, how to differentiate user input and select option from list in edge browser
The below code is to display input with options. Whenever user types, that text should be searched and display results. For this 'onInputChanges()' implemented on input event. This works perfectly in ...
1
vote
1
answer
1k
views
Edge, Hover, and Click
This is supposed to be a fly out menu that opens up when a user hovers.
This works perfectly fine within Chrome, I've tried this multiple ways (Using CSS :hover, (mousenter) and (mouseleave) the ...
-1
votes
1
answer
656
views
html <area> tag added in Angular does not show "hand" pointer in Edge and IE
I have html component in Angular 5 project, which dynamically adds some <area> tags using *ngFor directive, among with "real" <area> tags.
<map id="lbar" name="lbar">
<...
-1
votes
1
answer
3k
views
Angular app not open in Edge it redirect to open in IE 11 automatic
My angular 5 App is working fine in chrome,firefox. but when i tried to open in Microsoft Edge(WIN10 OS), Application is always open in IE 11 browser.
Also it didn't produce any error on console. ...
0
votes
1
answer
4k
views
Angular 5 app not working in Microsoft Edge 40
I have angular 5.2 application. its working fine in chrome,firefox. but in Microsoft Edge 40.15063 its not loaded fully. we are using angular material design with scss. i enabled all IE/Edge support ...
3
votes
0
answers
670
views
window.location.href not showing content in Edge
I am generating a .pdf in ASP.NET MVC and sending it to Angular 5 service. The requirement is to have it opened in new tab without downloading.
When the .pdf is generated, I send it to front end as a ...
3
votes
1
answer
1k
views
dispatchEvent not working on edge
In my angular application I have to opened a new window and dispatched an event back to the controller .The code is working on Chrome and Firefox but it does not work for Edge
Below is the code from ...