google-chrome

Chrome Doesn't Support QueryString

Dear all I am Extract the Data from the link. It works fine in firefox,But GoogleChrome didn't support.This functionality. Is there better way or alter procedure to extract the query string contents My Link http://safalra.com/web-design/javascript/parsing-query-strings/ <script type="text/javas...

Adobe air window with no chrome badly calculates dimensions when maximized.

When i maximize an air window that has no chrome (no system chrome, no flex chrome but i think it's the same even if only flex chrome is used) a few pixels on all sides go offscreen. Anyone has a solution for this or knows why it happens? ...

javascript/jQuery: event fired twice

I'm trying some event bindings with jQuery and I have this simple code in my document ready: $(document).ready(function() { $("p a").each(function(i, selected){ $(selected).hover( function(event) { alert('over: ' + event.type); }, function(event) { alert('out: ' + event.type); }); } ) }); So, when I move mou...

JQuery in Google Chrome can't find background image

I have a button that I want to change the background of to show that it is disabled when a user clicks on it. It works fine in IE/FF but in chrome it seems that it can't find the background image and makes the background nothing. I am just doing a simple css set in jQuery 1.2.6 $(".CheckoutBt").css("background-image", "url(/Portals/_...

How could be HTML markup working in Safari and not working in Chrome

The problem is on my blog - blog.dynback.com. Right panel goes down in Chrome, and stayed normal in all other browsers including Safari 4. And without Firebug its hard to find where is the problem. ...

Deserializing Chrome Bookmark JSON Data in C#

In response to a question I asked a few days ago, I'm attempting to stretch myself a little, and do something that I've not really focussed on much before. I've done some searching (both here, and in general), but can't find the answers (or even reasonable hints) to what I want to achieve (though, a few things come close-ish). Basicall...

Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?

Why was Google's Chrome browser written almost entirely in C++ and not C# or Java? ...

Chrome / IE8 multi-process design, is it possible in .NET?

Google Chrome and IE8 (among others) aim to provide greater reliability/stability by isolating each tab (web page) in a separate process (over-simplified, I know). This would seem to be much more heavyweight then multiple threads, but has the major benefit of a crash in one process not bringing down the whole application. It seems the ...

Google Chrome doesn't show openid-selector

Hi, does anybody have this problem? I tested my page with IE6, IE7, IE8, FF, Safari, Opera... it works with them, but Chrome just doesn't render it... any help? ...

Google Chrome: JavaScript associative arrays, evaluated out of sequence

Ok, so on a web page, I've got a JavaScript object which I'm using as an associative array. This exists statically in a script block when the page loads: var salesWeeks = { "200911" : ["11 / 2009", "Fiscal 2009"], "200910" : ["10 / 2009", "Fiscal 2009"], "200909" : ["09 / 2009", "Fiscal 2009"], "200908" : ["08 / 2009", "...

Setting location.hash in frames.

I am using ajax to update the location of a page in a frame. But when setting the location of the hash (on Chrome and some versions of IE (5.5) specifically, but occasionally on IE7) the page is being reloaded. The following html demonstrates the problem. the main frame.... frame.html is <html><head> <frameset rows="*"> <frame src=se...

ASP.NET ScriptManager causing warning in Chrome

I get the following warning in chrome developer javascript console: Uncaught SyntaxError: Unexpected token < http://.../Question.asmx/js (line 1) Resource interpreted as script but transferred with MIME type text/html. http://.../Question.asmx/js The HTML source code looks fine: <script src="../../../Question.asmx/js" t...

How do I force Firefox to redraw a video element?

I'm developing a dynamic html pop-up window (an absolute positioned div) using jQuery that automatically centers itself on the screen. It can also accommodate content that fits or exceeds the dimensions of the window screen. The idea is that our customer clicks a "read more" link next to our product listing and then this pop-up window c...

Detect blocked popup in Chrome

I am aware of javascript techniques to detect whether a popup is blocked in other browsers (as described in the answer to this question). Here's the basic test: var newWin = window.open(url); if(!newWin || newWin.closed || typeof newWin.closed=='undefined') { //POPUP BLOCKED } But this does not work in Chrome. The "POPUP BLOCKE...

.htaccess not working in Chrome/IE/Opera?

I have an .htaccess file that is redirecting everyone to the www. version of a site. Like so: RewriteCond %{HTTP_HOST} ^baldwinbrothersinc\.com$ [NC] RewriteRule ^(.*)$ http://www.baldwinbrothersinc.com/$1 [L,R=301] When I go to baldwinbrothersinc.com in Firefox or Safari, I am redirected to www.baldwinbrothersinc.com . ...

How to send custom HTTP headers with Flex when using Google Chrome

I am using a UrlRequest to send data to a server. I am sending various parameters via custom HTTP headers in the following way: urlRequest.requestHeaders.push(new URLRequestHeader("someheader", "somevalue")); When the request hits my ASP.NET endpoint (a class implementing IHttpHandler), the HttpRequest Headers property doesn't contain...

How to debug Silverlight against Google Chrome

Does anyone know how to debug a Silverlight 2 app running in Google Chrome from Visual Studio? Even after making sure that Chrome is the debugging browser, breakpoints are still not being hit. ...

Google Chrome breaks when onfocus sets select size

The following javascript to resize a select list breaks in Google Chrome. It works when tabbing into the field, but clicking on it results in the "Aw, Snap!" error page. <select onfocus="this.setAttribute('size', 3);"> <option>selectList with onfocus</option> <option>2</option> <option>3</option> <option>4</option> </select> Works fin...

Maximum background repetition in Google Chrome?

I'm getting a weird behaviour in my blog, only in Google Chrome. (This is a CSS/browser thing, nothing to do with the server component, Blogger, Wordpress, etc). The home page for it is admittedly too long, and what i'm getting is that the background on my main "container" element stops repeating after a certain height, but only in Goog...

window.open not working when attached on onload event in chrome and safari

I want to open a new window on onload if a particular condition is satisfied works fine in all others but window is not opening in Chrome and Safari would somebody please find a way to do this Duplicate: window.open not working when attached on onload event in chrome and safari ...