google-chrome

I'm trying to build a greasemonkey script, Chrome's debugger doesn't even like my first few lines !?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; <html> <head> <title>Hijack Example</title> <script type="text/javascript" src="./jquery-1.2.1.js"></script> <script type="text/javascript"> var preventDefaultAction = true; //TODO-U var cmdSpecStr = 'C-l'; //TODO-...

Wait for jQuery show() to finish before continuing function?

I can't make my div visible with the jquery show() until my function is over! It actually works in IE/FF but not in Chrome. How can I make sure my element is visible before continuing with my function? Here's my code: function doOperation(){ $("#progressbar_area").show(); (...) } ...

Loading of pages in IE very slow compared to other browsers

When I load the frontpage of the website I work for in IE it takes about 7 or 8 seconds to load fully (meaning, the "Waiting for" and "(x items remaining)" disappear and change to "Done". The exact same page takes about half the time in Firefox and Google Chrome, and I just can't figure out what's causing the difference. Is this just g...

Click event fires in IE/Firefox, but Chrome is dropping the event assignment

I'm in the process of debugging my web application and have hit a wall. I'm experiencing a behavior in Google Chrome only and my javascript ineptitude is keeping me from the solution. I have an ASP page with an <asp:Panel> control. Within the panel, I've setup a simple search textbox and am using an <asp:LinkButton> to launch the sear...

Table layout problem - Firefox versus Chrome and IE7

I'm trying to layout an HTML table (it's tabular data) and it is rendering differently in Firefox 3.5 and Chrome 2.0.172 (EDIT and IE7 - which renders the table like Chrome does). I have the table inside a div: <div id="listcontainer"> <table class="tasklist"> <colgroup> <col class="narrow" /> <col class="wide" /> ...

Why is Chrome reporting a secure / non secure warning when no other browsers aren't?

When I go to our web site through HTTPS mode, Chome is reporting an error saying that the page contains secure and not secure items. However, I used Firebug, Fiddler, and HttpDebuggerPro, all which are telling me that everything is going through HTTPS. Is this a bug in Chrome? Sorry but I'm unable to give out the actual URL. ...

In Chrome JS debugger, how do I print all the properties of an object?

I have opened the Javascript Debugger (Ctrl+Shift+L) in Chrome and started using it to set breakpoints in my code. This is a much different interface compared to Firebug, (it's all command line driven) so I'm wondering how to do a simple thing like print all the properties of an object. If I have an object like this: var opts = { ...

Using chrome for web development - how to dock the inspector?

I know Firebug is the standard, but I find myself using Chrome a lot (screen space, speed, etc.) Anyway, I think their inspector is pretty good, too. Certainly good enough that I don't want to fire up FF and navigate thru a site every time that I want to take a peak at the DOM. However, probably the most annoying part is that I can't do...

Detecting Presence of Horizontal Scrollbar in all browsers

Is this possible to do with JavaScript or even Selenium? ...

Empty response during ajax request in Chrome but not IE nor FF

Hi! I am receiving an empty response when calling a web method using asp.net in Chrome but not IE nor FF. I get this behavior using the ASP PageMethod.func as well as using jquery ajax call. I can 'fix' the symptom by adding a delay sleep call on the server which makes me believe code is just plain wrong somewhere. I have the webkit...

Is there any chance Chrome OS will support .NET framework?

Is there any chance Chrome OS will support .NET framework? Or will we need to learn Java... ...

Are image properties part of the DOM (jQuery - webkit inconsistency with other browsers)?

I ran into a problem on Chrome and Safari using jQuery to do some calculations using the widths of a strip of images. When using my calculations in: $(document).ready(function() { /* some calculations with $("img").width() */ }); everything works just fine in IE6+ and Firefox, but it does not in Chrome and Safari: $(img).width() ...

Position Fixed in Chrome

Hi Guys! I have a little problem with my site, I have a bar and on it a box that float above the bar, everything works fine in IE, Firefox, Opera, but in Chrome and Safari the box that must be above the bar float by the bar side no above it. #barraDerecha { width:240px; background-color:#e5e5e5; border-left:solid 2px ...

What is the best method to detect xml in JavaScript

What is the best method to detect xml in JavaScript e.g. is it possible to detect the mime type of a document - particularly if it is text/xml in JavaScript. this needs to work in Chrome. thanks, Josh ...

Why is Chrome submitting extra form fields? Is it a bug with Chrome?

I have a form being inserted into a page with jQuery. In all other browsers, it submits correctly... but in Chrome, some extra form fields from other forms on the page are being added to the POST. I'm not using javascript to submit the form, the form is just added with javascript and then submitted with a standard submit input. Has anyo...

How do I launch the Selenium IDE from the command line with a specific test case loaded?

I'm on Windows, and I want to launch Firefox and the Selenium IDE with a specified test case loaded and ready to play back. I've got as far as: >"C:\Program Files (x86)\Mozilla Firefox\firefox.exe" -chrome "chrome://selenium-ide/content" which launches Firefox and the IDE, but I don't know enough about the Selenium IDE or Chrome to g...

Whitespace at bottom of page in IE7 and Chrome only

Hi. I'm seeing extra whitespace at the very bottom of this page but only in IE7 and Chrome (and, as would be expected, in IE8 in IE7 Mode and Compatibility Mode). Here's what it looks like for me in IE7. I've examined the code using Firebug and the IE Developers Toolbar and didn't find any abnormalities. Anyone know what is causing th...

Syntax error in CSET library

I am using CSET, a library for Unicode character classes for Javascript. It loads fine in Firefox, IE8, and Opera, but fails in Google Chrome and Safari 4 with a syntax error. Strangely enough, the syntax errors are different. From cset_production.js: Safari SyntaxError: Parse error (line 255) CSET=function(){ // ... var g=this ret...

Jcarousel lite not showing up on page load in safari and chrome

I have this plug-in in use on my home page which is running on WAMP. It works great in every browser except Safari and Google Chrome. In those browsers the carousel doesn’t show up when I first load the page, nor when I hit reload. When I navigate to the home page via the on page navigation link then it shows up. Any ideas what could be...

Google Chrome textareas wrapping and adding line breaks - Help!

I've got a problem with textarea's in Google Chrome. I'm using classic ASP, but this is unimportant as Chrome is actually posting the data incorrectly. The problem is with a text area. As soon as a string of text is too long to fit one line of the text area, it wraps to the next line (as it should). My problem is that when submitted,...