google-chrome

ASP session not working in IE8, working in Firefox, Chrome

I'm trying to get my site to play a flash video the first time, and only the first time, a user visits the site. Currently, I'm using ASP session tags to install a sessionid cookie into the users browsers. <% Session("name")="blah" Session.Timeout=7 %> This method works fine in FF and Chrome, but IE8 doesn't seem to want to accept the...

Do Chrome extensions have access to local storage?

Is it possible to store data in a way that will be accessible after a browser restart in the context of a chrome extension? ...

Chrome extension: How to save a file on disk

Hi, I'm currently creating an extension for google chrome which can save all images or links to images on the harddrive. The problem is I don't know how to save file on disk with JS or with Google Chrome Extension API. Have you got an idea ? ...

childNodes not working in Firefox and Chrome but working in IE

I have a gridview in its 3rd cell, there is textbox control, I am calling javascript function on onchange. Can some body tell me why this is not working in Firefox and Chrome but working in IE grd.rows[rowindex].cells[3].childNodes[0].value It return correct value in IE but not in Chrome and firefox (In FF and Chrome it return undefi...

How can I add a URL to the download manager in a Chrome Extension?

I've been working on an extension that checks for certain URLs in page content and lets the user put a button to automatically put these into the download manager. I've gotten everything I need, but how do I actually tell Chrome to put the URL into the download queue? ...

Unexpected token ILLEGAL javascript error in Google Chrome

I am getting a javascript (prototype.js) error: Unexpected token ILLEGAL at this line of code: newFriend = new friend( response[0].@items[0]._id, response[0].@items[0]._nickName, response[0].@items[0]._profilePicture, response[0].@items[0]._tagLine, response[0].@items[0]._isInvite, response[0].@items[0]._con...

Change line break characters in HTML

In Firefox a '/' breaks a line, but in chrome the line continues. How can I tell chrome to allow a line break on '/'? This is a problem for the middle table on http://webnumbr.com/api ...

Does Chrome browser build verion 4.0.249.78 still support user script?

I had a couple of user script that worked in version 3.5 by adding command line option --enable-user-script, after I upgraded to version 4.0, all those scripts stop working. Chrome browser is promoting its extension, some of user script can be replace by a chrome extension. Can anybody confirm if latest chrome browser stop supporting use...

Which browser performs better with Asp.Net development Server

It is about the efficiency, which chrome being light weight, fine for general web browsing. I am thinking to use it as default browser when working on Web Applications. There are some limitation though which I know like, Could not use chrome when worked over an Rss Feed generator module, as chrome was not supporting the generated output...

Is Google Chrome embeddable?

Hi everyone! I've asked myself if one can embed the google chrome browser engine in an own application. I'm using Delphi 2009. There's an IE ActiveX wrapper component delivered with the IDE. Also, there's a Firefox ActiveX component out there, but it's based on very old code. I'd like to embed the chrome engine. Is there a way to do th...

After handshake of websocket, chrome disconnects. Is this due to domain mismatch? Or Chrome bug?

I made my own simple WebSocket server in Python but Chrome 4.0.249.78 dev (36714) ALWAYS disconnects after the handshake. To make sure it wasn't my code I used the WebSocket server found at http://stackoverflow.com/questions/2153294?tab=newest#tab-top to test it and got the same result (below). listening... connection! GET / HTTP/1.1 Up...

How can I calculate the position of a DOM element from Google Chrome content scripts.

Hi, I am writing a chrome extension and from the content script I want to calculate the absolute position of a DOM element. But from within content script, if i try to access offsetHeight, offsetWidth, offsetTop, offsetParent, etc, I get null. I guess content scripts don't have access to those DOM properties. Is there a way/workaround, ...

How to debug with command line in Chrome

I am recently working on dojo. And sometimes I need the help of chrome debugger help to understand how the function actually works. But right now, I have a problem. I want to add a breakpoint at a specified function. I know the function name already. But since the dojo source file is compressed, I cannot add the breakpoint at the specifi...

A couple of questions regarding Cufon

On Firefox, when I load my blog (http://dailyblogdose.com) there is a delay before the fonts get replaced by the pngs. However if I load technosailor.com there isn't any noticeable delay. However on Google Chrome both sites have delays. Any ideas why? I put a margin-left:-8px for my div.posttitle because there is an empty canvas generat...

jQuery position problem with Chrome

When I alert the value .position().left, it returns 0 on Chrome. With other browsers it returns the actual number. Why does this happen? ...

How to determine if onbeforeunload has been caused by clicking a link in Chrome

The problem is as follows. Onbeforeunload works like a charm in Firefox and has e.explicitOriginalTarget.activeElement that shows what element has been clicked to cause it. window.onbeforeunload = function(e){ if (e.explicitOriginalTarget.activeElement){ return; } In Chrome the 'e' object looks identical when you close...

Telerik RadAjaxManager and Mouse Events in Chrome

Whenever I'm using Telerik's RadAjaxManager in Chrome, the events sent to any mouse events I'm using are passed as null. For instance, the following: <img id="Image1" src="image.gif" onclick="alert(event)" /> <rad:RadAjaxManager ID="RadAjaxManager1" runat="server"> <AjaxSettings> </AjaxSettings> </rad:RadAjax...

Java applets launched using deployJava.js not working for Opera/Chrome on Mac?

I noticed that the launching of Java applets using deployJava.js seems to have stopped working on some Mac browsers. Safari and FF still work, but Opera and Chrome send the user to Java installation page, as if the plugin was not found. Take for example this. If you click the launch button in Opera, it sends you to a Java installation...

Why is the font quality of JQuery fadeIn() worse on Internet Explorer than Firefox/Chrome?

Why is the quality of this fadeIn/fadeOut demo much smoother when viewed in Firefox/Chrome than when viewed in IE8? http://tanguay.info/web/examples/jquerflash2 ...

HTML <base> in Chrome

Is <base href="http://google.com" /> <img src="/intl/en_ALL/images/logo.gif" /> supported in chrome? It works fine in firefox. Specifically, relative image links aren't resolving to the base url. It is for: http://webnumbr.com/create?url=http://google.com Tested in latest of OSX and Windows Chrome (4.0.249.78) ...