0
votes
5answers
45 views

Appending new container on click

I'm trying to learn HTML and Javascript/jQuery. If I have a container which holds a title, an image, a description and a number, then I want to create a new container with the exact same format ...
0
votes
0answers
44 views

Javascript, appended CSS not working on Webkit

Once again, I turn to the expertise of the crowd :-) I have appended a new stylesheet like so: var css = "#newElement { color: #ff0000 }"; style = document.createElement('style'); if ...
0
votes
1answer
37 views

typing in textarea super slow when lots of text inside

I tried this in Chrome. Having a textarea with a lot of text inside, editing the parts at the end become super slow. The cursor and the keyboard input response comes to a crawl. But if I make it so ...
5
votes
1answer
43 views

Detect changes of CSSStyleDeclaration object in JS

Is there any way to get notified when a CSSStyleDeclaration object gets changed just like DOM changes which can be tracked using events like DomAttrModified? So if there for example was some JS code ...
2
votes
2answers
84 views

Having trouble making hidden/visible error message

I am making a contact form, which includes name, email and a message which can then be submitted. If any of the three fields are null an error message is shown which I have working. The word "error" ...
0
votes
2answers
40 views

Unstyled text flashes before page fully loads in Firefox

I have a web page which loads inside of a JQuery UI Dialog. When the page loads in Firefox, the plain text appears for a second before all the css and javascript runs. Once everything loads, the text ...
18
votes
3answers
229 views

Performance: Pure CSS vs jQuery

I've seen a number of code comparisons between pure CSS and the equivalent jQuery. But I'm looking for details about why pure CSS is definitively faster than jQuery. Here's are some of the reasons ...
0
votes
4answers
55 views

Styling a div's links in Javascript [duplicate]

I would like to change the style of an element's links using JavaScript. The CSS would look like: #element a:link { color: #000; } I know that you can change the style of the the element ...
2
votes
1answer
71 views

Getting the shape/outline of an HTML node in JavaScript

Is it possible to get the shape/outline of a DOM node in JavaScript? I would like to get some kind of representation of the shape or outline so that I can tell exactly which pixels the DOM node ...
0
votes
2answers
34 views

CSS DOM issue - cannot find a reason why property is being overwritten

The site in question is 1000freewebsites.com. The specific pages I'm struggling with are: 1000freewebsites.com/signup.php 1000freewebsites.com/login.php This site uses the skeleton framework and ...
-1
votes
0answers
57 views

Change background image of THIS cell

I'm trying to change the background image of only expand rows. The following code works but it will only change the background image of the first rows td, regardless of what row I expand. How do I set ...
0
votes
2answers
53 views

CSS selector to get preceding sibling

Is there any way using pure CSS(3) to select an element that is a preceding sibling of an element with a particular class? i.e.: html: <div id='element-to-find'></div> <div ...
4
votes
3answers
75 views

Using $.css() without selector increases performance?

Jquery allows us to use the $.css() method directly and pass the raw DOM element as the first parameter. For example, if I want to set 'a' to the width of myDiv, jQuery allows this syntax: (OPTION ...
2
votes
4answers
76 views

If Image Is Larger Than Container, Add Class

Ok so I've been at this for hours to no avail. What I want to do, is write a script that does the following: when an image is larger than it's container, it adds the class "large" to it. But, if an ...
1
vote
1answer
43 views

A website that performs a similar function to Firebug, Chrome developer tools etc [closed]

I'm looking for a website that duplicates at least some of the most basic features of Firebug, Chrome developer tools, etc, but that is simple enough for a non-developer to use. At the very least, I ...
1
vote
2answers
69 views

Selecting all elements up until reaching a specific one

There is a container div which has other divs inside of it, these child divs contain text with some links in them. I'm trying to select all the anchor tags that are inside of this container div except ...
0
votes
0answers
38 views

IE: cannot preset default input value after add class attribute

Here is a input dom object that I try to add default value: <input type="text" name="amount0" id="_amount_id_0" value="0" /> and it works, but after add the class attribute <input ...
1
vote
2answers
49 views

Why can checkboxes have top/bottom margins?

Why does this style work: input[type=checkbox] { margin-top: 50px; } but not this: span { margin-top: 50px; } Both elements are display: inline;, and as far as I'm able to gather, neither inline ...
0
votes
1answer
83 views

to show visited color on javascript link

I have a hyperlink which is calling the JavaScript function. My link renders as follows <a class="popup" onclick="return launchModalNews('http://google.com',this)" ...
0
votes
1answer
27 views

Trying to figure out a method of resizing background image and containing elements with ratio for width of window

So I have this navigation menu setup and despite the code for the CSS currently. The background-color is mostly for ascetics at the moment. I need to have a background image on this setup. Its not ...
0
votes
2answers
60 views

How to set an element's height to be the same as its parent

I have a div called "content-left" within another "main-content". I want to have the child div assumes 100% of the parent's height. #main_content { display: table; width: 99%; margin-left: auto; ...
0
votes
0answers
42 views

javascript created table has rows that do stretch to table width

I dynamically create a table in javascript and append it to a div. The resulting table seems to have all the same tags and stylings as a straight up html table I used in the proof of concept, yet the ...
1
vote
1answer
52 views

Is the use of CSS generated content (i.e. pseudo elements) more efficient (i.e. parsed/rendered faster) than adding more DOM elements?

In order to keep my mobile web app lean and efficient, I'm trying to limit the number of elements on the DOM at any given time. One way in which I intend to limit the use of DOM elements, is by using ...
1
vote
2answers
117 views

How to find all possible CSS Styles and Attributes of an Element?

There are some ways to get all CSS styles of a DOM Element that are set with style or class Attribute. This works great, but if the class is not set to this it's not possible to find the classes that ...
2
votes
4answers
56 views

Change cursor icon when on certain calculated area

$(window).mousemove(function(e) { if(e.pageX > $(this).width()/2) { console.log('im on right'); }else { console.log('im on left'); } }); Plain and simple, it works, ...
1
vote
4answers
68 views

Removing text with Jquery

I am using the following code to hide certain text (2009, 2010, 2011, 2012, 2013) from showing up in a div: <script type="text/javascript"> $(function ($) { var el = $("#right_side"); ...
0
votes
1answer
60 views

Disable Nintendo 3DS Scroll Function while Firing Keydown

I've been trying to build a moveable div in a webpage that runs in the web browser of the Nintendo 3DS game system. Basically, when I use the + Control Pad (which corresponds with the keycodes of a ...
1
vote
3answers
60 views

How to fit a select tag in a table cell properly

I am desperately trying to make a select tag fit in a table cell like it belongs there, not like someone wedged it in with a crowbar. Here is the code followed by the picture of how it appears: ...
1
vote
1answer
34 views

Can you take a CSS snapshot of the styles applied to a page?

I am working on a page where a few javascript attributes load and modify the classes on various DOM elements. I was wondering if there was a means to "stop" the processing to see what is being ...
0
votes
0answers
42 views

getComputedStyle of a node in chrome is empty

I have the following line in my javascript code : if(document.defaultView && document.defaultView.getComputedStyle){ strValue = ...
0
votes
1answer
70 views

Inline Block element with width auto doesn't update

I am having trouble with inline-block elements with width: auto; and programatically changing the height with javascript. Here is a jsFiddle that demonstrates it; http://jsfiddle.net/uJZjB/2/ ...
2
votes
2answers
139 views

Can an SVG background be interactive?

I have an SVG image that I created. It is a rectangle with a circle inside it. The circle follows the users mouse using JavaScript. The image is represented by the following code: <svg ...
0
votes
2answers
89 views

The CSS input[value=whatever] selector doesn't seem to match against input.value. What am I missing?

N.B.: I should note that the proper solution to this is to just use the 'placeholder' attribute of an input, but the question still stands. Another N.B.: Since, as Quentin explains below, the ...
0
votes
1answer
35 views

make a class with ajax

How do i make a class with ajax? i have this code function parseResponse(request){ if (request.readyState == 4){ if (request.status == 200 || request.status == 304){ var data = ...
6
votes
1answer
232 views

Accessing CSS media query rules via javascript/DOM

I've been using a number of libraries (including my own) to dynamically load assets based upon media queries I've outlined in CSS files. For example: In CSS: @media screen and (max-width: 480px) { ...
3
votes
2answers
64 views

IE 8 Support for Odd/Even Zebra Styling

Ok, so. I know nth-child([:even|:odd]) isn't supported via IE 8. So now I am stuck trying to come up with a method of applying classes equal to odd/even rows. the way I would using :nth-child. Which I ...
0
votes
0answers
48 views

Javascript allocation of tilemap in browser

I am currently building a small turnedbased maze game. The maze is 2D and build up by tiles - much similar to Zelda map kinda games. I have minimum 256 different tiles to select from and I will be ...
0
votes
2answers
71 views

How to use CSS 3D to display child elements perpendicular to parent element?

The desired effect is to have 2 perpendicular dom elements like a 'pop-up' book. However, the child element seems to get flattened/projected onto the parent's plane. It seems to work if the 2 ...
0
votes
1answer
183 views

Create a semi circle pie char with variable attribute heights

I am new to JS and looking at the charts on http://d3js.org/ and I am having trouble understanding how to manipulate them. Basically I want to use the animated donut chart but I only want to display a ...
0
votes
5answers
137 views

jquery/javascript to read select box css/class

I have inherited some code that sets the css of a select box depending on the option that has been selected. There are many select boxes on the page and my goal is just to get select boxes that have ...
1
vote
1answer
85 views

How do I stop scrolling of page when overlay div is visible?

The page I'm working with sometimes displays a modal layover with a div (position: fixed) > div (position: relative; width/height: 100%) > div (position: absolute; left/right: 50%). Both on mobile ...
0
votes
3answers
94 views

how to do fixed nav, footer and content of remaining heigh without javascript or display:table?

Working on something that requires this type of layout: i need the content to have an implied size of the remaining space on the screen. i tried many things <div id="wrapper"> <div ...
1
vote
7answers
138 views

check if css class exist and if yes how many times

I'd like to know if a style class exists and if yes, how many elements have it. To know if a style class exists, I use: if ($("*").hasClass('ui-state-active')) { alert("class exist : ...
0
votes
0answers
52 views

Allow Clicking through element but still register hover

Heres my problem: I have an a tag that I am using as an arrow that you can hover over to change the scroll of a div.. That part works. However, I then want you to be able to click through to the other ...
0
votes
1answer
58 views

css selector order

I am confused as how to properly declare css selectors in terms of performance and web standards Assuming my html markup is <div class="itemList"> <div class="itemList-img-wrapper"> ...
-2
votes
2answers
63 views

html id selectors vs other kinds of selectors

I heard that id selectors are unique in that there can only be one element with a certain ID name on a page. In practice this does not seem to be true at all when selecting elements by their id in ...
0
votes
1answer
80 views

Inject CSS stylesheet as string using Javascript

I'm developing a Chrome extension, and I'd like users to be able to add their own CSS styles to change the appearance of the extension's pages (not web pages). I've looked into using ...
1
vote
0answers
67 views

Extent of anonymous table cell: Is Gecko or Webkit right?

Consider the following HTML markup: <ul> <li>Short</li> <li>LOOOOOOOOOOOOOOOOOOONG</li> </ul> <table> <tr> ...
4
votes
1answer
48 views

What is the element type of pseudo-elements?

<pseudo> </pseudo> ? The pseudo-elements of CSS are not in the DOM. But internally they must be equivalent to some kind of generic HTML element, since they can be styled, can be visible, ...
0
votes
0answers
20 views

Accessing Provenance of Style Applied to Element in Javascript

I would like to be able to query with Javascript where a particular CSS property was assigned to an element. For instance, if an element's height is 40px, I would like to know if this was assigned via ...

1 2 3 4 5 13