cross-browser

Float in div tag dosen't Work in Firefox

In IE show correctly but in FF Doesn't Show correctly: <div class="main_div" dir="rtl"> <div class="outer_div" dir="rtl"> <div class="textformatting" dir="rtl"> <div class="inner_div"> text </div> <div class="inner_div"> Image </div> </div> </div> <div class="outer_div" dir="rtl"> ...

The inherited height of a child div from a parent with a min-height attribute

I'm sorry if this is an old issue or a known problem, but I haven't been able to find an answer online. If I have the code <style> html, body { height: 100%; width: 100%;} #div1 {height:50%; min-height:200px;background-color:red;} #div2 {height:100%; background-color:black;} </style> <body> <div id="div1"><div id="div2"></di...

GET parameters to change my .php external javascript file to load different content

If I use GET parameters to change my .php external javascript file to load different content based on the page non of the browsers are going to cache that file right? they will treat global_js.php?page=foo and global_js.php?page=bar as if they had different names and load the content again right? or should I include something in my heade...

JQuery UI Tabs in IE appends ajax tab before body!

Wall Info < a title='members' href="ajax_commune_members.aspx"><span>Members</span></a></li> <li><a title='photos' href="ajax_commune_photos.aspx"><span>Photos</span></a></li> </ul> <div id='community_wall'> ...this one is local and is not loaded via ajax!, it is a...

Multiple versions of same browser on PC

I am running Windows 7 on my machine. I have following web browsers installed: Opera Google Chrome Safari (windows version) Firefox 3.6 IE 8 I am doing some development running on my local IIS web server and need to test my .net web application development cross browser. So I need to have older versions of the above browsers installe...

Refresh Parent Window from child window in IE8

Hello I create a link with window.open, in new opened window i add a button for close window. I want when my window is close then parent window will refresh, so i use this script : window.opener.location.href="https://qa.bloom.com/products/customer/account/profile/"; window.close(); In my application parent window use secure serve...

XMLHttpRequest different in IE8 vs. FireFox/Chrome

I'm having a problem similar to http://stackoverflow.com/questions/2721970/jquery-ajax-not-working-in-ie8-but-it-works-on-firefox-chrome, but with a different use case. I'm using the jQuery Form plug-in to handle a file upload to an ASP.NET MVC controller, which sends the file off for parsing and processing. If an Exception is thrown, ...

jQuery keyboard navigation breaks on Firefox

The following code reveals a div on a keypress event of '?' (191). Works perfectly with Google Chrome but refuses to work with Firefox. Any ideas? $(document).keyup(function (e) { if(e.which == 16) isShift=false; }).keydown(function (e) { if(e.which == 16) isShift=true; if(e.which == 191 && isShift == true) { if ($('#keyboar...

How to store a custom javascript Object in HTML DOM?

If I create a custom javascript Object using a constructor, Is it possible to persist the object between HTTP Requests? - like storing it in the DOM and use it conditionally ? Will the DOM Objects persist (all client side Objects) between the HTTP Requests ..? or will it get lost after every form submit..? Thanks ...

Hide option elements in select dropdown and IE6

I wrote some jQuery code to .hide() an <option> element in a select dropdown. .hide() is what I want, because later I can call .show() and the options will not need to be resorted, since the now visible option element will not have changed positions. .hide() worked great in FF/Chrome, but not in IE6/7/8. So my thought was to write mor...

Internet Explorer CSS Issue

So I'm attempting to figure out where my cross-compatibility issue is - From what I can tell, Firefox and Safari have been working great, however Internet Explorer (surprise?) has been giving me tons of issues. Take a look at the site below: https://secure.promptpass.com/index.php?clinic=1 For some reason, the background image is over...

gwt compile to single, monolithic cross-browser html file

I am looking to compile my gwt application into a single, monolithic, cross-browser compatible .html file. Ultimately, I'm trying to design an Amazon mechanical turk template via gwt. These templates must be a single .html file, since they are hosted on Amazon's machines. The .html file can reference external sources, but via absolute ad...

Is querySelector supported by all browsers?

hi guys, I would like to know is querySelector supported by all browsers? is not what's alternate for it to use? I have tested it with IE8, FF3, Chrome 4. Its fine for me. I do not have old browsers. So i would like to know if old browsers will give problem to me or not? ...

Embedding Video Cross Browser, Single format / Embed

I have a task ahead of me that I do not know the easiest way to address. Currently I am building out an admin section in Symfony for a client and she would like to upload video. She has the capability of conversion and will use the format I specify but I just do not know what the best on is for cross browser compatibility. I think .mo...

Cross-browser compatibility problem with IE

My site is incompatible with IE. How can I fix this problem? ...

Differences in JSON.stringify result between browsers

Hey! When I JSON.stringify() the following code: var exampleObject = { "name" : "Žiga Kovač", "kraj" : "Žužemberk"}; I get different results between browsers. IE8 and Google Chrome return: {"name":"\u017diga Kova\u010d","kraj":"\u017du\u017eemberk"} While Firefox and Opera return: {"name":"Žiga Kovač","kraj":"Žužemberk"} I am ...

IE9 ignoring CSS for certain pages?

I have different sites being served up, essentially running off the same code. One page renders correctly, while the other appears to have no CSS available. When I bring up the IE9 developer console for the broken page, I see: SEC7113: CSS was ignored due to mime type mismatch So that explains why the pages render improperly, but the ...

how to create deployment package for firefox

How to create a deployment package that contains a few DLLs, and an OCX ActiveX control, an OSD describing the contents, and an INF for installing the DLLs and ActiveX control for installing it from firefox like using cab files in IE. ...

How to cache an HTTP POST response?

I would like to create a cacheable HTTP response for a POST request. My actual implementation responses the following for the POST request: HTTP/1.1 201 Created Expires: Sat, 03 Oct 2020 15:33:00 GMT Cache-Control: private,max-age=315360000,no-transform Content-Type: application/x-www-form-urlencoded; charset=UTF-8 Content-Length: 9 ET...

How do people generate rich CSS based design layouts?

I just came across hoptoadapp.com and I was a bit shocked, that there is very little images on the site. Most of the banner, buttons are made purely of CSS styling. For example the up-right banner "See plans and pricing" is basically fully based on CSS, with all shades, gradients, etc made by CSS, also its different style-sheet for eve...