0
votes
1answer
25 views

How to generate Chrome Extension's popup body based on periodically fetched data?

I am programming a Chrome Extension that will be fetching JSON data every minute and update the popup's html body (accessible after clicking the icon) based on the results. This is my background.js: ...
0
votes
0answers
16 views

Chrome is firing mouseout events even though HTMLElement was removed

I have noticed a problem that only happens in Chrome. If you are listening to mouseout events on an element (such as to add a hover effect on something), and some action on the element causes the ...
0
votes
0answers
20 views

DOM Exception with JQuery Disables Debugging

I created the world's simplest HTML file: <html> <head> <script type="text/javascript" src="jquery-2.0.0.min.js"/> <script type="text/javascript"> function boing() { ...
0
votes
1answer
62 views

Click action does not work against input file element on Chrome [duplicate]

I get the input file element, and try to click on it in js on Chrome console, but it does not work and the file upload dialog does not appear. How can I achieve this? ...
0
votes
1answer
50 views

chrome - How to display images in popup.html using dom and js

I am doing a project and I need to display on a chrome extension popup all the images of the current selected tab website, I tried many things but the popup always shows as a small popup with nothing ...
0
votes
1answer
22 views

Is there a way to copy the path that appears in Chrome's dev tools after Inspecting an Element?

When you select Inspect Element with Chrome, at the bottom of the Developer's panel, a path to that element is shown. In this instance, it was body > div#divsinglecolumnwidth.singlecolumnwidth ...
0
votes
0answers
31 views

Chrome: Potential onmousemove Bug

I ran into an issue that may be a bug in Chrome, but I was hoping some more seasoned developers could take a look at the problem. I'm using the dom-drag JavaScript library by youngpup ...
1
vote
1answer
13 views

Chrome window targeting without common launch relationship

I'm doing an application where one window needs to talk to another, even though they didn't originally come from a common page. There seems to be a requirement in Chrome that this is so. The two ...
2
votes
1answer
91 views

addEventListener not working in Chrome

I am following a tutorial on Lynda.com about the new DOM event model. This is the code I am working with. function addEventHandler(oNode, sEvt, fFunc, bCapture){ if (typeof (window.event) != ...
0
votes
0answers
14 views

Chrome Extension Find A Header URL

I'm trying to build my first chrome extension that checks all the headers for a particular URL. Then does something when that particular URL on the header was found. I'm trying to modify this ...
0
votes
1answer
112 views

Static iframe at bottom makes webpage unscrollable

Take a look at: http://jsfiddle.net/BUNVM/1/ <body> This is a test page<br/> (many more lines to make the page scrollable) This is bottom of the test page<br/> ...
-3
votes
1answer
106 views

big javascript function document.write renders in 1 sec in firefox and 4min in chrome, with html code [closed]

Chrome takes 4 minutes to render a page with a big javascript function and Firefox takes like 1-2 sec. It's simple code, a document.write javascript function that has been called around 30 times so ...
0
votes
1answer
21 views

text node ignored if present b/w html and head node?

Why doesn't text node(spaces) come if we try to get firstChild node of HTMLhtmlElement? In the attached image, there are some spaces between <html> and <head> tag and ideally firstChild ...
4
votes
2answers
112 views

chrome/opera anchor shift away after adding dom elements

Say I have a URL: http://rythmengine.org/doc/expression.md#transformer Immediately after the page is loaded, the anchor is shown correctly, however I have a script to automatically add some iframes ...
1
vote
2answers
84 views

Chrome DOM/JavaScript Reference

Is there a Chrome Javascript/DOM Reference page like the Mozilla Developer Network? which other page covers Chrome specific implementations of "The Standards"?
0
votes
0answers
24 views

Why Chrome replaces <i>208074/maxsize:</i> to <i>blockquote</i>?

Catched this weird bug that appears to work only in chrome-dev 27. Here's an example: http://jsfiddle.net/YZ7nw/ <i>208074/maxsize:</i> Why does this happen?
2
votes
1answer
157 views

jQuery .on() Method Not Working In Chrome (but does in IE & FF)

I have jQuery code that executes fine in both IE 9 & FF 19, but doesn't seem to work properly in Chrome Version 25.0.1364.172. Using jQuery 1.7.1 I have 2 dropdown lists and a button. On initial ...
5
votes
1answer
131 views

Animating multiple DIV-Elements with JS and the DOM results in a low Framerate

Preface I just started programming with javascript and I am currently working on this hobby web-site project of mine. The site is supposed to display pages filled with product images than can be ...
0
votes
0answers
104 views

Chrome >18: access page DOM from extension

I'm working on my first extension. It has to analyze the HTML input field of the visited page (not mine, any one on the net) and, eventually, change some attributes of that fields. My problem is, how ...
2
votes
1answer
74 views

consistent text-height using css

In a big testsuite I'm testing how layout is interpreted in detail and have found that Google Chrome on Mac and Linux calculates the size of the text area differently, see this jsfiddle: ...
3
votes
1answer
85 views

Differences in browser scope treatment of chrome/firefox

This alerts x in chrome, but not on firefox (Chrome 25.0/FF 11.0): var x="hi.", b; (b = document.createElement("button")).innerHTML = "click me"; b.setAttribute("onclick", "alert(x)"); // Doesn't ...
0
votes
1answer
49 views

Google Chrome Changes elements to lowercase

I have a HTML file like this: <html> <head> <title>Test</title> <script language="javascript"> function removeElements() { alert( ...
1
vote
2answers
49 views

adding an image to HTML through chrome extension (JS)

I made an extension that needs to place a fixed image on every page. The content script is: imgTop = chrome.extension.getURL('top.png'); var top = document.createElement("img"); top.src=imgTop; ...
1
vote
1answer
56 views

How to record the position of text on a page?

What I'm trying to do is allow the user to select a piece of text on the page and highlight it, then be able to load this selection and re-highlight it on further visits (with purely client side ...
0
votes
1answer
164 views

DOM manipulation slow in Chrome (hiding / showing elements)

I've put together a small test at http://jsfiddle.net/Hwqb3/3/ this morning. This is on the back of a larger project with pagination. I have tried this with native JS and jQuery. The test uses jQuery. ...
0
votes
3answers
240 views

Object someUrl#someHash has no method 'contains'

The following code is giving me an error in Chrome. It seems that window.location.href does not return a String, but that seems crazy. Here is the code: var theUrl = "" + window.location.href; var ...
0
votes
2answers
70 views

JavaScript objects unique to all versions of Google Chrome?

I was wondering if there are any javascript objects that are unique to all versions of Google Chrome. I know there's the window.chrome, but that was only implemented in Chrome 15, which was rather ...
0
votes
1answer
120 views

Javascript : Chrome gives [object text] for [object HtmlDivElement]

I'm using following for loop in one my javascript functions to create a data row in my application. for (var j = 0, length = contentsArray.length; j < length; j++) { //get the control for ...
1
vote
0answers
63 views

Issue with the order of childnodes in Chrome

I'm facing kind of a strange problem here. In my application, it uses a for loop to go through a DOM's childnodes and set values inside those child nodes. It looks like following. for (var j = 0, ...
0
votes
1answer
78 views

Why does navigator.productSub always equals '20030107' on Chrome and Safari?

According to the MDN the archaic navigator.productSub property returns the 'build number of the browser'. This probably worked in the nineties, but it's pretty useless now. However, i'm interested in ...
1
vote
1answer
142 views

“Copy as HTML” on nested IFrame elements in Chrome Inspector

In Chrome's web inspector, if you right-click a DOM element there's a "Copy as HTML" option that will normally give you an HTML string of that element and all its children. However, it doesn't seem to ...
1
vote
1answer
271 views

Disable location bar in Google Chrome

I'm using window.open for a click event in jQuery. The problem is that I want to disable the location bar, it works in Safari but not in Chrome. I heard somewhere that it is impossible to get rid of ...
0
votes
1answer
55 views

Print to console from Chrome objects DOM like Safari's does

This url will see an example of how Google Chrome (23.0.1271.91) prints to console DOM objects compared to Safari 6.0: https://dl.dropbox.com/u/12754811/dom-objects-console.jpg Is there any way to ...
0
votes
0answers
69 views

Chrome equivalent for DOM .xml property

Please have a look at this link. It says that .xml DOM property is Internet Explorer-only. My question is- Is there any chrome equivalent for the same property? Below is the xml that I am trying to ...
2
votes
1answer
84 views

How do I Listen for change in the text of an object using MutationObserver?

Let's say I have a span such as this <span id="theSpan"></span> Using WebKitMutationObserver (I'm developing an extension for chrome, so no worries about cross-browser issues), how do i ...
1
vote
1answer
241 views

Stop all scripts in a page from loading

I've been trying to get this code working in Google Chrome but I can't seem to be able to stop server requests from "removed" scripts from happening. What I'm trying to do is remove all scripts in a ...
2
votes
1answer
433 views

Chrome skips contenteditable attribute with insertHtml in ckeditor

I use a ckeditor in which I want to insert a non-editable placeholder. According to the docs you can set an attribute (contenteditable="false") to the desired element to make it non-editable. In ...
1
vote
1answer
184 views

Viewing DOM Elements as Objects in Chrome debugger

Is it possible using Chrome's debugger (or another debugging tool) to view DOM Elements as objects? That is, if I create a regular object in Chrome's console, I'm able to inspect its elements. > ...
2
votes
1answer
354 views

chrome extension — appending div to body not working with facebook like button

I'm creating a chrome extension and I've been successful so far. As a last functionality I'm trying to attach a div (something that shows a small, non-irritating ad about my personal site) to the body ...
0
votes
3answers
269 views

IndexedDB Fails when adding objects that contain element references

I'm writing an application for Google Chrome (targeted audience is an internal team) that allows a user to manipulate elements from within an iframe. The user is able to use her mouse to select DOM ...
4
votes
1answer
139 views

Chrome event triggering takes ages in large DOM

I have a relatively large DOM and have noticed an incredible performance degradation in chrome when triggering events on an element. A single event e.g: myElem.trigger('myevent.myscope',arguments); ...
1
vote
0answers
89 views

Reading href attribute of relative links in DOM created from HTTP request

In a Chrome Extension, I need my background page to retrieve an HTML document and look though that document for text that appears within a specific anchor tag. The anchor tag does not have an ID ...
1
vote
1answer
786 views

Javascript, programmatically trigger file download in firefox

I have a data uri in memory that I would like the user to download. This fiddle works in chrome but not FF: http://jsfiddle.net/6W2TY/ When you click run it will download the tiny image in chrome ...
0
votes
0answers
59 views

Modifying DOM with chrome extensions

I've read that chrome extensions have separate DOMs that each extension refers to, which is kept track through a hash table. I've also read that when DOM methods are called, such as appendChild(), ...
0
votes
2answers
241 views

Access Chrome DOM tree with python

Using Chrome DevTools you can see the DOM tree of a page. Is there a way to access and pull out that tree using python?
3
votes
2answers
93 views

Why can't I access Chrome built-in function $?

Type $ in Chrome console then return: $; function () { [native code] } And to get a DOM element: $("container"); <div class=​"container" id=​"container">​…​</div>​ But it cannot work ...
2
votes
3answers
446 views

How to resize a text field in Chrome?

I need to resize a text field in google Chrome. I want to be able to drag the end of the textfield horizontally & vertically. This is what I have tried so far. I'm able to see the resize icon at ...
2
votes
1answer
272 views

Console shows error about Content Security policy and lots of failed GET requests

I'm actually working on my first Chrome Extension and even if it run smooth i got a lot of error from the get() function i'm using to retrieve some data and an annoying error about the security of the ...
1
vote
0answers
201 views

Chrome DOM not updating for jQuery append/fadeIn

After fetching a new record from the server, I use the AJAX success callback from jQuery 1.7.2 to add a new record to the list and fade it in. function onSuccess (data, status, xhr) { var record ...
0
votes
1answer
128 views

Dom update issue

I'm trying to drag images from div to div making sure that only one is in a div at a time. It works great on Opera but fails in Chrome (and others). It appears to work until I update elements from ...

1 2 3 4