Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
957 views

Get computed font-family in JavaScript

This is a followup to this question. I am working on a component for the CKEditor, a tweaked version of the font drop-down menus that always display the currently selected font family / size values, ...
3
votes
3answers
296 views

Firefox issue with currentStyle vs getComputedStyle

I am trying to get the width of an element according to it's CSS rules The problem is that "getComputedStyle" returns a pixel value instead of "auto" for an element with no CSS width value set. In ...
2
votes
2answers
86 views

how to query whole DOM for elements matching some computed style ? (in pure js)

For example I want to find all elements that have computed style position: fixed;. How to do it without making much load on the CPU ? Is iterating every getElementsByTagName('*') and then doing for ...
2
votes
1answer
182 views

get computed border radius in opera

I'm trying to get computed border-radius state of some element with this code: function _elementCurrentStyle(element, styleName){ if (element.currentStyle){ var i = 0, temp = "", ...
2
votes
4answers
687 views

Detecting width: auto in jQuery

I'm retrieving the width of elements using jQuery and would prefer it if I could have an indication of whether there was an explicit width (and height) specified. <div id="test"></div> ...
1
vote
0answers
20 views

It is damn too slow to get current style on Chrome using javascript

I am stuck with a stupid problem. Below is my code to get computed style of a dom. It run well on FireFox and even IE (surprised)! but damn too slow on chrome v17 (20x time slower). How to avoid the ...
1
vote
1answer
733 views

get computed background color as rgb in IE

I am trying to get the RGB background color in IE using the following code: function getStyle(elem, name) { // J/S Pro Techniques p136 if (elem.style[name]) { return elem.style[name]; ...
1
vote
2answers
939 views

Simple getComputedStyle in Prototype JS?

Is there an easy cross-browser way to get computed style of an element in PrototypeJS, without checking document.defaultView... and other properties? ...so that the code looked like var elt = ...
1
vote
3answers
900 views

Find out what the cause is of a certain calculated CSS style

I have a <div> on a webpage which ends up with a calculated height property of 633px. This is not set in any cascading style sheet, inline or not, nor is it set in a javascript. I have searched ...
0
votes
1answer
78 views

getComputedStyle object contains methods?

I have set up a demo here: http://jsbin.com/evifeb/ This is more of me thinking out loud than a proper question but.. Why do browsers insert style rules directly into the computed styles object ...
0
votes
3answers
114 views

Cannot remove extra margin/padding between divs even though reset.css used

I've been trying everything i know for the past 1.5 hours and cannot figure this one out. Actually far as i can tell, margin and padding are at 0, however, the containing divs are so far, inexplicably ...
0
votes
2answers
103 views

Howto extract a complete DOM Tree out of an HTML Page

I have to comparare two web pages and analyse if there is any difference between them. The problem is: i need to include every DOM element (also the ones that are added dynamically through ...
0
votes
1answer
54 views

Rewritten CSS computed style issue (wrong page layout)

I am rewriting CSS (don't ask why) in a way that I'm changing the style attributes via HTMLElement.setAttribute method. The problem sometimes occurs when I have computed styles that make no sense. For ...
0
votes
2answers
84 views

How do I reliably and consistently get the calculated width style for a VIDEO element?

var vid = document.createElement("video"); vid.src = "big_buck_bunny_640x360.mp4"; document.getElementsByTagName("body")[0].appendChild(vid); console.log(window.getComputedStyle(vid, ...
0
votes
1answer
713 views

How do i get a computed style?

EDIT Well unless i write some code to render the html source files from the iframe in the same way a browser works- from a cached copy of the iframe display.. then there is no way- its a complete ...