Tagged Questions

6
votes
5answers
688 views

List of All Background Images in DOM

What's the best way to find all of the background images on a given page using javascript? The ideal end result would be an array of all of the url's.
3
votes
5answers
774 views

JavaScript tree functionality without framework

I'd like to display a tree on a Facebook page with JavaScript. Therefore there can be no dependencies on frameworks such as jQuery or Ext which won't run on Facebook, at least as far as I know when I ...
2
votes
3answers
360 views

What is an efficient way to set CSS class for each cell in a given table row?

I have a problem setting the CSS class for each cell in a given table row. Initially I thought setting the parent row CSS would affect the style properties of cells, but that doesn't work. Instead I ...
0
votes
4answers
189 views

Check/uncheck all checkboxes on without looping and without a framework

Is it possible to check or uncheck a set of checkboxes on a page a) without looping, and b) without using a Javascript framework such a jQuery? This question is related but is about (un)checking all ...
0
votes
2answers
218 views

window.open specify content size not window size?

When you do a window.open() you can specify the size of the new window. well depending on a lot of things (like browser, toolbars, etc.) the viewport can vary in size. For example if I have an image ...
0
votes
3answers
885 views

Javascript: Fade element from specidied opacity to specified opacity?

I am trying to find a function that can fade an element from a specified transparency to a specified transparency. For example from 0 to .7 but everything I can find just fades either from 0 to 1 or 1 ...
0
votes
5answers
8k views

JavaScript range slider / dual slider exist withOUT using a framework

I'm looking for a JavaScript control that is a Range Slider (dual knob) that: does NOT use an existing JS framework (e.g. dojo, jquery, etc) - unless you can roll/create your own sub framework where ...
-1
votes
1answer
301 views

Why does my custom drag and drop script fail?

I am currently trying to code my own JS drag and drop script (out of sheer curiosity and boredom, I know it would be much easier with a framework). My aim is a fully working FF3 version , IE can wait ...