google-chrome

Google chrome form textbox limit.

What is the text box limit for google chrome in characters. ...

CSS links behaving differently in Chrome and Safari vs Firefox

currently i'm having 2 issues. first of all, in chrome and safari there is a gray border around an image link. the border isn't there in firefox. here's the code: <a href="link.html" target="_blank">Link title <img class="leaving" /></a> and css: .leaving { background-image: url("images/leaving.png"); height:10px; width:10px;...

Discrepancy between outputs from firefox and chrome for 'console.log'

Why would firefox give me the correct output but Chrome doesn't ? I am trying to find the height of a div that has not been specified in the stylesheet or anywhere else. Chrome gives me the integer value of '20', but firefox gives me the correct value (using firebug) of 516. This is the code I am using to generate the console.log: va...

Greasemonkey, Chrome and unsafeWindow.foo()

I have the following anchor tag, which contains dynamically-generated arguments arg1,...,arg5 to the JavaScript function foo(), which runs on the web site-side. There are several of these anchor tags throughout the page in question, with unique id values and argN values: <a href="#" id="foo1234567890" onclick="javascript:foo(arg1,arg2,a...

Chrome doesn't cache images/js/css

When Chrome loads my website, it checks the server for updated versions of files before it shows them. (Images/Javascript/CSS) It gets a 304 from the server because I never edit external javascript, css or images. What I want it to do, is display the images without even checking the server. Here are the headers: Connection:keep-alive ...

Editing pure JavaScript extensions directly in Chromium

I'm developing a JavaScript extension for Chromium and my current workflow is: Edit file Uninstall old file Install new file Test file Is there a quicker way of doing this? I'm using chromium-browser_5.0.375.125 in Ubuntu 10.04. ...

google chrome submits form even if there is no SUBMIT button

This bug/feature cropped up in one of my pages when viewed in google chrome so i wrote a test page which looks like this <body> <form action="loginhandler.php"> <input type="text" id="name"> <input type="text" id="lastname"> <input type="button" value="Login"> </form> </body> Here you can see, the input type is NOT...

Chrome IFrame blocking out Flash (Flash in CKEditor popup above the CKEditor IFrame)

An image says a thousand words: http://i35.tinypic.com/hu3a1e.png A flash object in a CKEditor dialog is being blocked by the IFrame element. This only happens on Chrome. I have tried changing the z-index, that didn't work at all. Any ideas? ...

Javascript callbacks work in Firefox but not in Chrome or Safari

I am working with Ejabberd and Orbited and I am having a few issues with my JavaScript callback functions not being called. The following is my JavaScript file where the TCPSocket connection happens and I have two callback functions namely onSocketConnect: which is called when the Orbited established connection with port 5222 of the XMP...

Web Development -- Not Having to Clear your Cache Each Time

Working with sensitive files that require the cache to be cleared each time... how do I tell Firefox and Chrome to clear my cache each time I refresh the page and/or not cache to begin with? Many thanks! ...

asp.net datagrid borders appear different (bad) in other browsers

Hey, I realize that pages are just going to look different in varying browsers, but mine is looking awesome in Chrome, ok in mozilla, and pretty bad in IE 7. Sadly, most people using my page will use IE. My issue is with the borders. I have a redish border around the rows of the grid. In chrome they all appear as they should. In Firefo...

How do i open popup window in C# ASP.Net application for Chrome? (RegisterStartupScript not working)

I have the following line of code: ScriptManager.RegisterStartupScript(this, typeof(string), "print", "javascript:window.open('Print.aspx');", true); This opens up the popup window in Firefox and IE, but not Chrome. Normally, I would use onClientClick on the button, which works fine on all browsers. In this case, however, I have to do...

link jumps on hover google chrome and safari

Trying to create a vertical drop down menu purely with html/css. the coding is quite clean as far as i can see, and works well in ff, ie (not 6 ofc), and opera though on google chrome and safari the "toplink" jumps to the left on hover. html: <div id="topmenu"> <ul> <li class="toplink"><a href="about.html">About</a> <ul class="s...

Visual Studio 2005 Server Explorer not working after installing Chrome!

Hi, Something very weird happened. I usually use Firefox and IE to test my .net sites. However, I had to download Chrome to test something specific in it and after that I haven't been able to use Visual Studio normally anymore. Every time I try to open the Server Explorer window VS crashes. It does also after a few minutes I've been usi...

2 Chrome Table Rendering Defects: Inconsistent Rendering and table-layout: fixed;

First: This doesn't happen in Safari, and I cannot say it's WebKit. Second: Hit this link: http://nerdfiles.net/gdgs/chrome-table-rendering-defect.html Third: Control-refresh 30 or 40 times; you'll eventually see it. The table cells are "exposed" to highlight the problem. Fourth: CTRL+SHIFT+I, set the same problem table to "table-layout:...

Binding keypress event using JQuery not working in Chrome

I'm using Ubuntu 10 and trying out the below code in Firefox 3.6 and Chrome 5. $(document).ready(function(){ $(document).bind("keypress", function(e){ alert("Pressed"); }); }); Surprisingly the above code works well in FF3.6. i.e. for every key pressed, I'm getting an alert box. But in Chrome, i'm...

Link from content script to options page.

How to link to options page from content script? ...

How do i open popup window in C# ASP.Net application without Chrome silently blocking it?

I can't use RegisterStartupScript('window.open...), because Chrome blocks the popup without even informing the user. I can't use "onclientclick=window.open(..." in the markup, because I have to invoke code in the button click event handler before opening the popup window. I can't expect every user of the website to add the site as an e...

jQuery event delegation for select/options in Chrome

I am trying to bind a simple click event to an the selected option of a pulldown. $('select#myselect').delegate(':selected', 'click', function() { alert('selected'); }); This code works in Firefox, but not Chrome/Safari. Can I use the .delegate() to bind an option for a pulldown menu like this? If so, how? If not, what is...

Google Search Injection

Hi I'm writing a chrome extension to inject information into google search results. The only problem is that searching is now done through ajax instead of http. This means my code is only being executed once. This is a problem because my script needs to render on each new page. The only way to make it work is by refreshing the page manua...