cross-browser

Flexbox column heights

时光毁灭记忆、已成空白 提交于 2019-12-11 19:22:52
问题 I have this site: http://kudos-topspindigital.azurewebsites.net/#/netball If you open this in Chrome and IE you will see my issue. Basically in chrome, the right panels are around equal heights. I would like the bottom panels (the orange and dark gray one) to be twice as height as the top light gray panel. For once, IE has got it right. It actually resizes the bottom panels as flex: 2. How can I get chrome to do the same? 回答1: Since flex is a shorthand property, flex: 1 becomes flex-grow: 1;

Why does my PHP reCAPTCHA only display on Chrome and Safari?

匆匆过客 提交于 2019-12-11 19:00:48
问题 I'm using the PHP reCAPTCHA on my company's website. I basically just followed this tutorial https://developers.google.com/recaptcha/docs/php which is pretty straightforward. Anyway, everything displays and submits fine on Chrome and Safari, but on IE10 and Firefox the reCAPTCHA box simply doesn't show up client-side. I somewhat diverge from the tutorial in the way that I don't have a separate verification page, but I still don't see how this would affect the image displaying on various

Why offsetTop returns different value in Chrome and IE

半世苍凉 提交于 2019-12-11 18:32:37
问题 We are working on angular application in which we need to show one element on top of the page after browser's scroll reach to that element. Is there any CSS issue which is impacted. Below is the code. elementRef.nativeElement.offsetParent.offsetTop; 来源: https://stackoverflow.com/questions/54604098/why-offsettop-returns-different-value-in-chrome-and-ie

Browser Specific issue - One input file field data not assign to another input file field

我只是一个虾纸丫 提交于 2019-12-11 17:32:00
问题 function assignFile(obj){ var file2 = document.querySelector('#fileData'); file2.files = obj.files; console.log(file2.files); } <form action="" method="post" enctype="multipart/form-data"> <input type="file" name="fileData[]" id="fileData" multiple="" style="display: none;" /> File: <input type="file" id="file" name="file" onchange="assignFile(this)" /> <input type="submit" name="submit" value="Submit" /> </form> I have two file fields. I want to assign file data to fileData field. I have

PHP - URL displays fine in Chrome and IE8, but not in Firefox 3.0.11

孤者浪人 提交于 2019-12-11 16:51:12
问题 My site prints out URLs in a table. In Chrome and IE8, the URLs look great. In Firefox 3.0.11, the URLs only display up until the second forward slash. So for example, "nytimes.com/pages/world/americas/index.html" is just "nytimes.com/pages" in Firefox. Any ideas why? The code is below. Edit: I'm beginning to think this is a CSS issue because when I remove my styles, the link displays correctly in Firefox. I'm going to re-post this as a CSS issue. Thanks in advance, John print "<td class=

Why doesn't my jQuery code work in Firefox and Chrome?

陌路散爱 提交于 2019-12-11 16:40:07
问题 EDITED Hi, I use masterpage. And I use formsauthentication in my project. I pull my data from SQL Server 2005. then in login.aspx, I call my pagemethod from jQuery. After all, I run my project in IE9.0, Chrome and Firefox. The project is correct. But this jQuery code is working only IE9.0. My pagemethod, which is named LoginService, returns "0" or returnURL like "user/Default.aspx", then I control this tah if return of LoginService isn't "0" success will run the following: alert("there isnt

HTTP-POST XHR not working in chrome

非 Y 不嫁゛ 提交于 2019-12-11 16:21:12
问题 I am working on a Web App in which I need to call to the server cgi which will in turn use this data for further use. It working fine in IE6+ and FF but not in chrome 15.(not yet checked with IE6) Here is my code : var destinationURL = "/cgi-bin/conf.cgi"; var xmlHttpReq = getXMLHttpRequest(); if(xmlHttpReq == null){ return false; } if (xmlHttpReq.readyState == 0){ xmlHttpReq.open('POST', destinationURL, true); xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');

Does this applet work for you?

北慕城南 提交于 2019-12-11 15:28:33
问题 I have found a solution to get the full file path of a file that is about to be uploaded using a Java Applet. I need this for an internal system not anything else "dodgy"! Can anyone confirm if this works in an IE6 browser: http://www.maschek.hu/preview/ffx3_file/filepath.html I have an IETester application that has IE6/7/8 in one place and all IE6 does is just load/wait for the page and it has been 10 minutes. I am trying to determine if this applet will work in IE6? Its using PARAM tags so

Diagonal div overlay

本秂侑毒 提交于 2019-12-11 15:25:39
问题 I'm trying to get a diagonal div across some content. I have some select boxes that I would like to disable, using the disabled property, but I would like to have a div on top with the word 'disabled' going along the fieldset diagonally (like 'sold' on real estate for sale signs). Is there any cross browser way to achieve this effect with css? I don't want to use an image to do this 回答1: I'd probably just go with an image for simplicity, but if you insist: See: http://jsfiddle.net/yPRUN/ This

Windows Authentication not prompting on Firefox or iOS Safari

吃可爱长大的小学妹 提交于 2019-12-11 15:09:31
问题 I have two WCF WebHttpBinding-bound self-hosted services. One is set to WebHttpSecurityMode.TransportCredentialOnly and HttpClientCredentialType.Windows . The other is set to None and None . This service is serving the exactly the intended authentication prompt behavior on Chrome and IE, with correct content types and content. Testing on localhost and remotely (not on a domain). In IE, the default settings for integrated authentication send my credentials immediately to the authenticated