Fragen mit folgendem Schlagwort anzeigen: Alle Fragen anzeigen

having issues with weird codes showing up on certain web pages

when i go to my amazon vendor central account i cannot access purchase orders. i get to a blank page that has this code on it: '),t.close()}(); no idea what that is or… (Lesen Sie mehr)

when i go to my amazon vendor central account i cannot access purchase orders. i get to a blank page that has this code on it:

'),t.close()}();

no idea what that is or why it is happening. then when i go to geminisound.com i keep seeing this in the top part of the website:

"); } else { win._boomrl = function() { bootstrap(); }; if (win.addEventListener) { win.addEventListener("load", win._boomrl, false); } else if (win.attachEvent) { win.attachEvent("onload", win._boomrl); } } doc.close(); } var link = document.createElement("link"); if (link.relList && typeof link.relList.supports === "function" && link.relList.supports("preload") && ("as" in link)) { window.BOOMR.snippetMethod = "p"; link.href = window.BOOMR.url; link.rel = "preload"; link.as = "script"; link.addEventListener("load", promote); link.addEventListener("error", function() { iframeLoader(true); }); setTimeout(function() { if (!promoted) { iframeLoader(true); } }, LOADER_TIMEOUT); BOOMR_lstart = new Date().getTime(); parentNode.appendChild(link); } else { iframeLoader(false); } function boomerangSaveLoadTime(e) { window.BOOMR_onload = (e && e.timeStamp) || new Date().getTime(); } if (window.addEventListener) { window.addEventListener("load", boomerangSaveLoadTime, false); } else if (window.attachEvent) { window.attachEvent("onload", boomerangSaveLoadTime); } if (document.addEventListener) { document.addEventListener("onBoomerangLoaded", function(e) { e.detail.BOOMR.init({ ResourceTiming: { enabled: true, trackedResourceTypes: ["script", "img", "css"] }, }); e.detail.BOOMR.t_end = new Date().getTime(); }); } else if (document.attachEvent) { document.attachEvent("onpropertychange", function(e) { if (!e) e=event; if (e.propertyName === "onBoomerangLoaded") { e.detail.BOOMR.init({ ResourceTiming: { enabled: true, trackedResourceTypes: ["script", "img", "css"] }, }); e.detail.BOOMR.t_end = new Date().getTime(); } }); } })();

please help.

Gefragt von isaac.cabasso vor 3 Tagen

Letzte Antwort von cor-el vor 2 Tagen

The "Triage Manager" for Mozilla Refuses to assign anyone to a seven year old open problem

I need to go over the head of the Mozilla Triage manager who has left https://bugzilla.mozilla.org/show_bug.cgi?id=1406865 open without a resolution for **seven years**. … (Lesen Sie mehr)

I need to go over the head of the Mozilla Triage manager who has left https://bugzilla.mozilla.org/show_bug.cgi?id=1406865 open without a resolution for **seven years**. How do I do that? This is a bug reported in Firefox 57 and **still** not fixed in Firefox 125. I cannot find any support category anywhere in the Mozilla website that covers appealing a decision by one of their employees. The last comment from this uncooperative indivisual is "But given we support it on macOS and Windows yeah, it seems not very objectionable." Who is this **clerk** to override the fact that a number of customers very much find this "objectionable". I cannot find anything on https://www.mozilla.org/en-US/contact/ that addresses this issue. I cannot find even a surface mail address for Mozilla. For example my complaint has nothing to do with any of the following:

   I’m having problems with using Firefox
   I want to donate to Mozilla
   I have questions about using Mozilla’s trademarks
   I’d like to report misuse of a Mozilla trademark
   I want to hold an event in a Mozilla space
   I want Mozilla to sponsor my event
   I’d like permission to use a Mozilla logo
   I’m interested in Pocket’s sponsored content on Firefox
   I’m a member of the Press and have a question for Mozilla

Yes I am having a problem with Firefox, but the clerk responsible has, through sitting on this issue for **seven years**, basically told the entire community that he doesn't give a reservoir.

In particular I feel this unacceptable behaviour should be brought to the attention of senior management, but there are no contacts for anybody in senior management.

Gefragt von jamescobban vor 1 Woche

Letzte Antwort von Paul vor 2 Tagen

Images Broken on Firefox but Fine on Other Browsers

I'm experiencing an issue, when I visit this website in Firefox, some images appear broken, but they display perfectly in other browsers. Has anyone else encountered this… (Lesen Sie mehr)

I'm experiencing an issue, when I visit this website in Firefox, some images appear broken, but they display perfectly in other browsers. Has anyone else encountered this problem or have any suggestions on how to fix it?

Gefragt von Atif vor 4 Tagen

Letzte Antwort von jonzn4SUSE vor 3 Tagen

Bookmarks

As of today 5/20/2024 Firefox stopped saving bookmarks. The star turns blue to indicate the bookmark was saved, but when I check the folder in Bookmarks it's not there. … (Lesen Sie mehr)

As of today 5/20/2024 Firefox stopped saving bookmarks. The star turns blue to indicate the bookmark was saved, but when I check the folder in Bookmarks it's not there.

Gefragt von thallmike vor 3 Tagen

Letzte Antwort von cor-el vor 3 Tagen

Firefox does not display background color in option tags

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text: ```<select id="stroke… (Lesen Sie mehr)

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text:

```<select id="strokeColor" name="strokeColor" style="width: 10em;">

             <option value="black" style="background: #000000; text: #FFFFFF">
                     black
             </option>

<option value="aqua" style="background: #00FFFF">

                     aqua
             </option>

<option value="blue" style="background: #0000FF">

                     blue
             </option>

<option value="brown" style="background: #A52A2A">

                     brown
             </option>

<option value="gray" style="background: #808080">

                     gray
             </option>

<option value="green" style="background: #00FF00">

                     green
             </option>

<option value="magenta" style="background: #FF00FF">

                     magenta
             </option>

<option value="orange" style="background: #FFA500">

                     orange
             </option>

<option value="purple" style="background: #800080">

                     purple
             </option>

<option value="red" style="background: #FF0000">

                     red
             </option>

<option value="white" style="background: #FFFFFF">

                     white
             </option>

<option value="yellow" style="background: #FFFF00">

                     yellow
             </option>

<option value="#000000" selected="" style="background: #000000">

                     #000000
             </option>
         </select>```

On Chrome this displays as expected:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-25-eebbd5.png

But on Firefox the background colors are ignored:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-35-bd90ee.png

How can I get Firefox to display the background colors?

Gefragt von jamescobban vor 1 Monat

Letzte Antwort von Paul vor 3 Tagen

Pop-up blocked

My Firefox is the most recent version 126. I am having trouble with pop-ups being blocked. I have added the website to the pop-up exception list. When I go to the site, i… (Lesen Sie mehr)

My Firefox is the most recent version 126. I am having trouble with pop-ups being blocked. I have added the website to the pop-up exception list. When I go to the site, it shows me the little icon showing I have added exceptions for this site. However; the pop-up still gets blocked.

The site is: https://www.foxit.com/ I try clicking the Log In drop down then Foxit Account. Before this would pop-up the log in screen for the site but since version 125, it does not. I just updated to version 126 to see if that resolved it before creating this post but it didn't. Thus I am here trying to get help.

Gefragt von Kevin vor 1 Woche

Letzte Antwort von cor-el vor 3 Tagen

Browser re-sizing on start up

When I open the application it loads as a small window that I have to maximize to make it full screen. It never used to do this so I need some help to fix this. I've take… (Lesen Sie mehr)

When I open the application it loads as a small window that I have to maximize to make it full screen. It never used to do this so I need some help to fix this. I've taken a quick look through settings etc and can't see anything wrong...

Gefragt von matt_parker vor 3 Wochen

Letzte Antwort von firefox2801 vor 3 Tagen

https://wordpress-700233-2343916.cloudwaysapps.com/wp-admin

Hi I cannot get this site to load up on my phone it will load up but not on my laptop . am I missing a setting https://wordpress-700233-2343916.cloudwaysapps.com/wp-adm… (Lesen Sie mehr)

Hi I cannot get this site to load up on my phone it will load up but not on my laptop . am I missing a setting

https://wordpress-700233-2343916.cloudwaysapps.com/wp-admin

Gefragt von Jeremy Fuller vor 4 Tagen

Letzte Antwort von Ali alhabsi vor 4 Tagen

Trouble saving downloads

Prior to about a month ago, downloading worked as expected: - click a link - the save to... dialog opened - choose the folder - the download is off and running No more. … (Lesen Sie mehr)

Prior to about a month ago, downloading worked as expected: - click a link - the save to... dialog opened - choose the folder - the download is off and running

No more. For about the past month - click a link - wait for a long time with FF frozen - the a wheel starts rotating - after a full minute (or more) the save dialog appears.

Something has been broken in the mad-dash to push updates. It's fine for browsing, but the, you need to download. At that point you wish you were using a different browser (any other browser, in fact) since FF is the only oe that has this problem. Downloading works fine in a 8 chromium browsers that I have and in the 5 FF clones (like Waterfox)

It's just FF that's broken. I can no longer afford to set it as default because of this. The others are not perfect (WF won't activate Pocket, foe example) but downloading promptly is critical.

Gefragt von essin vor 1 Monat

Letzte Antwort von squillenial vor 4 Tagen

Blocking mini media player popups

Is there any way to block media mini players from popping up on websites entirely? This is what I've tried, I found this in another article here. media.autoplay.def… (Lesen Sie mehr)

Is there any way to block media mini players from popping up on websites entirely?

This is what I've tried, I found this in another article here.

   media.autoplay.default = 5 [0:allow;1:blockAudible;5:blockAll]
   media.autoplay.blocking_policy = 2
   media.autoplay.allow-extension-background-pages = false
   media.autoplay.block-event.enabled = true
   media.block-autoplay-until-in-foreground 

It doesn't autoplay anymore, but it still pops up in the bottom right corner of the screen. I don't mean Firefox's picture in picture, I'm talking about the floating mini player most websites use. It's thoroughly annoying, especially when you have your pop-up settings set to off.

Gefragt von CustardShark vor 5 Tagen

Letzte Antwort von TyDraniu vor 4 Tagen

text in tab names, address bar and menu boxes

Why is the text in tab names, address bar and menu boxes so small? I did the changes to about:config and the other one that comes up when I googled this question but, wh… (Lesen Sie mehr)

Why is the text in tab names, address bar and menu boxes so small? I did the changes to about:config and the other one that comes up when I googled this question but, while they enlarge the text in those places, they make the page content too big.

Gefragt von LB32005 vor 4 Tagen

Letzte Antwort von Agent virtuel vor 4 Tagen