The new Google Chrome auto-translation feature is tripping up on one page within one of our applications. Whenever we navigate to this particular page, Chrome tells us the page is in Danish and offers to translate. The page is in English, just like every other page in our app. This particular page is an internal testing page that has ...
I've got some code which works fine in IE but unfortunately not in Google Chrome/Firefox.
It relies upon calling a click() event on a button from javascript. Reading around it seems that this is an IE specific extension (doh). Is there any way I can do a similar thing in chrome + firefox? To clarify, it's executing the click event on a ...
Hi everyone,
I am working on creating a Google Chrome extension. We have it included in an automated build system and since it is constantly being worked on we need a solution to be able to package the extension as a .crx file which according to http://code.google.com/chrome/extensions/packaging.html can easily be scripted.
My question...
http://steph.net23.net/work.php here is my test link. This page has a jquery script in it that adds a class to the first image. This works in all browsers except Chrome. It's like it adds it and then the image disappears. Anybody know why?
...
Is there a way to do this to Chrome?
tell application "Google Chrome"
return URL of front document as string
end tell
... doesn't work.
...
I would like my page action to be activated for all the outgoing links from a certain page. How might I go about doing that? I've gone over the docs to no avail. Any pointers would be appreciated!
...
Chrome 4.0.266.0, Rootkit Unhooker 3.7.300.503.
Iff Chrome is running, RkUnhooker shows in Code Hooks:
IDT-->Int 0x000000B1 0x863DDDD4 - [unknown_irp_handler] IDT modification
Why does Chrome modifies IDT?
...
I searched a while and found no extension that can compete with Firebug. Perhaps combination of several extensions can provide similar feature set of Firebug.
Anybody develop web app and unit test mainly in Chrome can share some knowledge?
...
Hi,
I'm experiencing an increase of memory usage, when I use the jQuery-eventhandling in Chrome. I've tested it with IE and FF as well, but there I couldn't see a suspicious rise of memory-usage, compared to Chrome.
I'm using Chrome version 4.0.223.16 (unfortunately I'm forced to use this version, here)
Simple example here. Just scrol...
I have a question, if i set a image height in css and try to get height/width i get different results in different browsers. Is there a way to get the same dimension in all browsers?
You can find a live example here<-Removed
and the concept is like this:
CSS:
img{
height:100px;
}
Script:
$(document).ready(function(){
$("#text...
Hi,
I'm writing an NPAPI plugin. In every webpage that the browser goes to, I inject my plugin with an object tag. Something like:
<object id="myplugin" type="plugin-mime-type" >
In some pages where i dont want it, after injection i remove it by finding the element using the id and doing a document.removeChild. From my logging i found...
I'm testing a site I've built using the latest build of Chrome on Windows 7 and for some reason it is having issues with cookies. From what I can tell the cookies are being set correctly by the php script but then fail some basic validation in my script on the next page load and are then reset to the default setting.
What is baffling is...
I did a test in chrome and firefox, chrome with no extension, firefox with a dozen.
The test is form goolge (perhaps is optimized for chrome?), here and the result was:
Firefox: 118
Chrome: 2479
So I wonder: the benchmark is also influenced by the installed extensions or chrome is really so much higher than Firefox in performa...
Using jQuery .ajax() to read "./ex.html" returns the expected contents of the file
in the first alert box. Using the same call just changing the request to "./" does not return an expected directory listing in the second alert box.
<html>
<head>
</head>
<body>
<script type="text/JavaScript" src="jquery.js"></script>
<script type="text/...
I have a web application build on asp.net, the Textbox onchange event not working in chrome? On page load i wrote this code,
textbox1.Attributes.Add("onchange", "SetEditDataFlag();");
SetEditDataFlag() -- it is a javascript function. When I browse the application in chrome then this function is not called when i changed some value on...
Hi i'm using contact form 7 plugin for a really long form.
My issue is that when I fill my form in chrome and press send to test the fields validation it clears my form of all my content. Yet I do not get this issure in ie7 or firefox.
Is it to do with chromes interface?
Thanks for all your help
Regards
Judi
...
I am using jquery code to handle language translation, I have in my previous posts, gotten the code to handle most text and ajax translations.
And this code even works 100% in firefox, but when testing on google chrome 5.0.365.2 Dev
$("input:button,input:submit").each(function() {
var value = $(this).val();
...
hi all,
i am new to javascript..
i have two select boxes with multiple selection enabled.When i select an element from first select box it scrolls into view the corrosponding element from the second list.The single selection goes fine in all browsers explorer,firefox,chrome.
now, if i select the first,last element from the first select...
I am trying to fire the asp.net button click event from javascript. Its working fine in IE, but the same code is not working on Chrome, please help me. Here is the js code,
<script type= "text/javascript" language="javascript">
var btnSave = document.getElementById('btnSave');
btnSave.click();
alert("The changes are saved su...
I have below code to insert a style into DOM (there is a use case for injecting style into DOM so please don't ask why or say to load the css in .css file).
<script type="text/javascript">
window.onload = function()
{
var bmstyle = document.createElement('style');
bmstyle.setAttribute('type', 'text/css');
var styleStr = "#te...