google-chrome

Javascript Browser Recognition

I was doing the browser recognition tutorial on w3schools,and I found that when using firefox and google chrome I received Netscape 5 as my result. I was just curious as to why this is. Anyone care to explain it to me? ...

Google Chrome: Focus issue with the scrollbar

I am using jQuery 1.3.2. There is an input field in a form. Clicking on the input field opens a div as a dropdown. The div contains a list of items. As the list size is large there is a vertical scrollbar in the div. To close the dropdown when clicked outside, there is a blur event on the input field. Now the problem is: In chr...

Collection of Browser characteristics

I searching the Internet for an Page or an Book that collects the characteristics (Bugs/Features) of common Browsers. I get a lot of Information from several sites.. but is there some place for webdesigner that focusses on that issue? At the moment i am using Grails if that is an needed factor to answer my question. ...

Bookmarklet script too long to create application shortcut.

I figured out how to create a bookmarklet for Google Analytics that opened to immediately show only today's stats. I wanted to make a Google Chrome application shortcut for this to go along side my other Google Apps shortcuts, but the first problem is that it only creates an application with the current url, which displays today's info ...

Can anyone CSS-savy help me figure out the problem with a WebSVN setup?

I'm a total newbie when it comes to CSS so I've pretty much given up on figuring out the problem here myself. The problem I have is that my WebSVN installation has an odd problem related to viewing diffed files. There's some CSS that highlights the current line, but when I move my mouse up and down over the screen, the lines gets to be ...

Problem in chrome, HTML Form in div over a div.

I've got 3 div's on my page, one is the form which is last in the code and positioned ontop of the first 2 divs. In Google Chrome when I try click the form fields it wont let me unless I click the bottom bit of input boxes or the very top of radio buttons. I've confirmed the problem is with having divs behind it by removing the other 2 ...

Chrome and JQuery issue - $(document).ready(function() { }); being called before page is loaded

Hello all, I am learning JQuery, and I have ran into an odd issue. I made a slideshow, and it works in IE, Firefox 3.0 and Firefox 3.5, but the initial image doesn't work in Chrome. The script just cycles through a list of images and resizes the divs (image, caption) based on the size of the viewing window. If I move the $(document...

Setting class on HR breaks TD colspan

Hi, I have a nested table arrangement for displaying data. I want the nested table to be in a TD that spans all the parent table columns. So I have colspan set. However I also want the user to be able to click on the parent to hide/unhide the child data. This works fine in IE8, but in FireFox and Chrome the nested table is ignoring the ...

JSON is not defined, Chrome

I have some JS that runs fine in FF and IE but in Chrome I see the following error: uncaught exception ReferenceError: JSON is not defined I presume I need to include something but I'm not sure what. Help? Also, any clue why this might work on IE/FF but not Chrome? Btw, I'm using JSON.stringify() in my script. ...

Launch file:// from Firefox/Chrome

I am looking to be able to launch a network file on our local intranet using FF or Chrome Currently the link work good in IE <a href="\\Start\Of\My\Network\file.xlsx">View Report</a>&nbsp; but in FF it show <a href="http://mydomain.com/\\Start\Of\My\Network\file.xlsx"&gt;View Report</a>&nbsp; is there a way to get the link to ren...

How to solve the "error 500" issue of Symfony PHP framework with Webkit browsers?

Hi there, I'm having an issue with the visualization of my site on Google Chrome and Safari (both using Webkit rendering engine), the site is built upon Symfony framework, version 1.1 (unmaintained version). When navigating to the site, this shows an error 500 when loading a page, I read somewhere that it might be related to Symfony cac...

Why is the html select background-color black in Chrome when set to transparent?

I have the following drop down menu and the background looks black in Chrome but white on Firefox/IE/Safari across Windows/Linux/Mac. I'm using the latest versions of all those browsers. <style> select { background-color: transparent; background-image: url(http://sstatic.net/so/img/logo.png); } </style> <select> <option>Ser...

Cache Refresh in Chrome

I dunno what exactly it's called, by cache refresh I mean, refresh the page after clearing its cache. I don't want to clear the entire browser cache. I prefer Chrome's Dev panel against firebug... don't ask me why. But I can't seem to cache refresh my pages. In FF, I know it to be Shift+Refresh. In chrome, I've tried Ctrl+R, Ctrl+Refre...

get zindex javascript chrome

Hi all, can anyone tell me how can i find zindex of a div in Google chrome document.getElementById(id).style.zIndex;//does not work ...

removenode in javascript chrome

Hi All, I want to removw a node from a page for that i am using the below mentioned function document.getElementById(id).removeNode(true); .This is working fine in IE but not in Chrome. Can anyone tell me how can i do that Thanks ...

jquery click event on select option element in chrome

Hi, I m having a problem in chrome with the following: var items = $("option", obj); items.each(function(){ $(this).click(function(e){ //alert("test"); process($(this).html()); return false; }); }); The click event doesnt seem to fire in chrome! In firefox it works!I wa...

Chrome vertical scrollbar not working when URL has # at end

I've had an intermittent problem that I thought was due to un-cleared floats. What happens in Chrome (my main development browser) is the vertical scrollbar will lock in the top position and I cannot scroll down the page. Initially when the page starts to load it will allow you to scroll and then when the page is loaded it will jump back...

Javascript Text Insertion Not Working in Chrome?

Hey guys, this bit of code works in IE but not in Chrome, any idea why? <script type="text/javascript"> function fillreply(commentID){ var item = document.getElementById("replyto"); item.value=commentID; } </script> ... ... <div id="makereply" class="hidden">Reply to: <input type="text" size="6" ...

Jquery hide/FadeIn problem using Google Chrome

Hello guys... This code works fine in IE8/7 and Firefox... But in Google Chrome i got a problem... My page have a menu, when the user click it, hide div blocos and shows the content (using url parameter setted in menu) My Jquery Code: $(document).ready(function() { $('div.blocos').hide(); $('div#divMenuBloco').show(...

Accessing the Delete key in Google Chrome via JavaScript

I use the following code to delete a character when the user presses the delete code. It works in Firefox but doesn't work in Google Chrome. What do I have to fix? window.onkeypress = function(key) { ... if (Guessing>0){ else if (key.keyCode == 8){//Delete key PhraseEntry=PhraseEntry.substri...