Tagged Questions
The Document Object Model - specifically, the XML / HTML document object model. Use this tag on questions regarding the interaction of other languages with such markup via these models. Do not use it as shorthand for HTML, JavaScript, or SAX - use additional tags to denote both language and markup.
191
votes
9answers
19k views
Why don't self-closing script tags work?
What is the reason browsers do not correctly recognize:
<script src="foobar.js" /> // self-closing script tag
Only this is recognized:
<script src="foobar.js"></script>
Is it ...
185
votes
11answers
76k views
How to debug Javascript/jQuery event bindings with FireBug (or similar tool)
I need to debug a web application that uses jQuery to do some fairly complex and messy DOM manipulation. At one point, some of the events that were bound to particular elements, are not fired and ...
177
votes
8answers
159k views
jQuery document.createElement equivalent?
I'm refactoring some old JavaScript code and there's a lot of DOM manipulation going on.
var d = document;
var odv = d.createElement("div");
odv.style.display = "none";
this.OuterDiv = odv;
var t = ...
157
votes
7answers
9k views
.prop() vs .attr()
Ok.
So jQuery 1.6 has the new function prop().
$(selector).click(function(){
//instead of:
this.getAttribute('style');
//do i use:
$(this).prop('style');
//or:
...
107
votes
5answers
27k views
How to find event listeners on a DOM node?
I have a page where some event listeners are attached to input boxes and select boxes.
Is there a way to find out which event listeners are observing a particular DOM node and for what event?
Events ...
102
votes
12answers
58k views
How do I find out which Javascript element has focus?
I would like to find out, in Javascript, which element currently has focus. I've been looking through the DOM and haven't found what I need, yet. Is there a way to do this, and how?
The reason I was ...
97
votes
3answers
51k views
How can I check whether a variable is defined in JavaScript?
How to check whether a JavaScript variable defined in cross-browser way?
I ran into this problem when writing some JavaScript utilizing FireBug logging. I wrote some code like below:
function ...
95
votes
12answers
209k views
Check if option is selected with jQuery, if not select a default
Using jQuery, how do you check if there is an option selected in a select menu, and if not, assign one of the options as selected.
(The select is generated with a maze of PHP functions in an app I ...
77
votes
9answers
63k views
What is the most efficient way to create HTML elements using jQuery?
Recently I've been doing a lot of modal window pop ups and what not, for which I used jQuery. The method that I used to create the new elements on the page has overwhelmingly been along the lines of:
...
69
votes
8answers
24k views
How do I select text nodes with jQuery?
I would like to get all descendant text nodes of an element, as a jQuery collection. What is the best way to do that?
64
votes
2answers
8k views
IE/Chrome: are DOM tree elements global variables here?
Working on an idea for a simple HTMLElement wrapper I stumbled upon the following for IE and Chrome:
for a given HTMLElement with ID in the DOM tree, it is possible to retrieve the div using its ID ...
55
votes
8answers
81k views
count immediate child div elements using jQuery
I have the following HTML node structure:
<div id="foo">
<div id="bar"></div>
<div id="baz">
<div id="biz">
</div>
<span><span>
...
49
votes
10answers
72k views
How to check null objects in jQuery
I am using jQuery, and I want to check the existence of an element in my page. I have written following code, but it's not working:
if ($("#btext" + i) != null){
//alert($("#btext" + ...
46
votes
9answers
50k views
Dynamically retrieve Html element (X,Y) position with JavaScript
I want to know how to get X and Y postion of HTML elements such as img, div in JavaScript.
thanks
45
votes
12answers
43k views
Copy / Put text on the clipboard with FireFox, Safari and Chrome
In Internet Explorer I can use the clipboardData object to access the clipboard. How can I do that in FireFox, Safari and/or Chrome?
40
votes
18answers
4k views
What Cross-Browser issues have you faced?
While developing for multiple sets of browsers, what issues have you faced while development due to differences in browser implementation?
To start with I am listing some of those which i faced:
A ...
37
votes
4answers
2k views
Rotate webpage via code?
I'm hoping that there's a relatively simple way to rotate a webpage a little bit, 30 degrees or so, while still leaving it fully functional and usable.
I completely control the page, and can modify ...
37
votes
13answers
37k views
How to check if an element is really visible with javascript
In javascript, how would you check if an object is actually visible. I don't just mean checking the visibility and display attributes. I mean, checking that the element is not
visibility:hidden or ...
35
votes
11answers
45k views
Javascript callback when IFRAME is finished loading?
I need to execute a callback when an IFRAME has finished loading. I have no control over the content in the IFRAME, so I can't fire the callback from there.
This IFRAME is programmaticly created, and ...
31
votes
3answers
38k views
How may I sort a list alphabetically using jQuery?
I'm a bit out of my depth here and I'm hoping this is actually possible.
I'd like to be able to call a function that would sort all the items in my list alphabetically.
I've been looking through the ...
31
votes
5answers
59k views
Rotating a Div Element in jQuery
Trying to rotate a div element...This might be DOM blasphemy, could it work possibly with a canvas element? I'm not sure - if anybody has any ideas of how this could work or why it doesn't, I'd love ...
30
votes
5answers
7k views
Why does setTimeout(fn, 0) sometimes help?
I've recently run into a rather nasty bug, wherein the code was loading a <select> dynamically via JavaScript. This dynamically loaded <select> had a pre-selected value. In IE6, we ...
29
votes
4answers
491 views
Is Javascript/jQuery DOM creation safe until it's added to the document?
Please read this statement carefully: let's assume before ANY elements are added to the document all unsafe elements in $dom have been removed. But they were initially created. Ok let's continue....
...
29
votes
4answers
2k views
How to access CSS generated content with JavaScript
I generate the numbering of my headers and figures with CSS's counter and content properties:
img.figure:after {
counter-increment: figure;
content: "Fig. " counter(section) "." counter(figure);
...
28
votes
4answers
69k views
How can I get an element by name with jquery?
I have a table column I am trying to expand and hide. jQuery seems to hide the column when I select it by class but not by element name.
Why does
$(".bold").hide(); <--This works
...
27
votes
3answers
7k views
jQuery get DOM node? [closed]
Possible Duplicate:
How to get a DOM Element from a JQuery Selector
I can select a node using jQuery with something like $('#element_id') but how would I get the DOM element for use with ...
27
votes
5answers
7k views
How to tell if a DOM element is visible in the current viewport?
Is there an efficient way to tell if a DOM element (in an HTML document) is currently visible (appears in the viewport)?
(The question regards Firefox)
25
votes
5answers
13k views
How to remove all css classess using jquery?
Instead of individually calling $("#item").removeClass() for every single class an element might have, is there a single function which can be called which removes all css classes from the given ...
24
votes
10answers
3k views
Best book to learn web development for a professional developer? [closed]
I'm a professional software developer. I've been programming in a lot of different languages over the course of more than two decades now. Picking up a new programming language is very easy for me.
...
24
votes
8answers
22k views
Detect element content changes with jQuery
change() function works and detects changes on form elements, but is there a way of detecting when a DOM element's content was changed?
This is does not, unless #content is a form element
...
24
votes
5answers
18k views
jQuery event for images loaded
Is it possible to detect when all images are loaded via a jQuery event?
Ideally, there should be a
$(document).idle(function()
{
}
or
$(document).contentLoaded(function()
{
}
But I can't find ...
24
votes
6answers
19k views
Get Element value with minidom, Python
I am creating a GUI frontend for the Eve Online API in Python.
I have successfully pulled the XML data from their server.
I am trying to grab the value from a node called "name"
from ...
23
votes
2answers
8k views
jQuery find events handlers registered with an object
I need to find which event handlers are registered over an object.
For example:
$("#el").click(function() {...});
$("#el").mouseover(function() {...});
$("#el") has click and mouseover registered.
...
23
votes
3answers
6k views
XML parsing - ElementTree vs SAX and DOM
Python has several ways to parse XML...
I understand the very basics of parsing with SAX. It functions as a stream parser, with an event-driven API.
I understand the DOM parser also. It reads the ...
22
votes
4answers
434 views
How do I learn about browser host objects
4 months later:
I'm reading the WHATWG and W3C specifications. If you want to know host objects read them. Don't trust other resources.
TL:DR;
I listed some host objects learning resources, but ...
22
votes
5answers
21k views
How to create a DOM node as an object?
I would like to create a DOM node, set the 'id' attribute and then append it to 'body'. The following seems not to work because jQuery doesn't see my template as an object:
var template = ...
21
votes
5answers
383 views
Best practice for using DOM Level 0 in modern JavaScript applications
Is there an agreed set of "best practices" for use of the DOM Level 0 collections in modern JavaScript applications? (document.forms, document.images, etc.)
In applications using jQuery, I've noticed ...
21
votes
3answers
911 views
Search and Replace Words in HTML
what I'm trying to do is make a 'jargon buster'.
Basically I have some html and some glossary terms in a database.
When the person clicks on jargon buster it replaces the words in the text with a nice ...
21
votes
9answers
25k views
How do I get the current location of an iframe?
I have built a basic data entry application allowing users to browse external content in iframe and enter data quickly from the same page. One of the data variables is the URL.
Ideally I would like to ...
20
votes
5answers
909 views
Can I load an entire HTML document into a document fragment in Internet Explorer?
Here's something I've been having a little bit of difficulty with. I have a local client-side script that needs to allow a user to fetch a remote web page and search that resulting page for forms. ...
20
votes
9answers
11k views
How do I do OuterHTML in firefox?
Part of my code I get the OuterHTML propery
"<LI onclick="TabClicked(this, 'SearchName', 'TabGroup1');">Name "
so I can do stuff involing parsing it.
There is no OuterHTML property in ...
20
votes
9answers
21k views
How can I scale the content of an iframe?
How can I scale the content of an iframe (in my example it is an HTML page, and is not a popup) in a page of my web site?
For example, I want to display the content that appears in the iframe at 80% ...
19
votes
3answers
189 views
How are JavaScript host objects implemented?
I was thinking about this today and I realized I don't have a clear picture here.
Here are some statements I think to be true (please correct me if I'm wrong):
the DOM is a collection of interfaces ...
19
votes
11answers
1k views
Clear form button in HTML…do we really need this?
I usually add the clear form button to HTML forms by default, but tonight I had what alcholics call a "moment of clarity". Why the hell do we add this? In all my years of using the internet I have ...
19
votes
5answers
39k views
Finding the id of a parent div using Jquery
I have some html like this:
<div id="1">
<p>
Volume = <input type="text" />
<button rel="3.93e-6" class="1" type="button">Check answer</button>
...
18
votes
4answers
815 views
Javascript getElementById lookups - hash map or recursive tree traversal?
Does the DOM have a hash-table of elements whose keys are the elements' ids?
I want to know if document.getElementById looks up a hash table or traverses the entire tree.
Is this behavior different ...
18
votes
5answers
3k views
What characters are allowed in DOM IDs? [closed]
Possible Duplicate:
What are valid values for the id attribute in HTML?
Underscores seem fine. What about dashes? Other special characters?
18
votes
4answers
25k views
Creating a new DOM element from an HTML string using built-in DOM methods or prototype
I'm trying to create an element dynamically using an HTML string. Here's a simple example using both prototype and DOM:
// HTML string
var s = '<li>text</li>';
// DOM
var el1 = ...
17
votes
3answers
383 views
Is there a difference between `new Image()` and `document.createElement('img')`?
In javascript, I can do:
img1 = new Image();
img2 = document.createElement('img');
my question is, is there a difference between the two approach? I've read somewhere that Image, Form, and Element ...
17
votes
2answers
17k views