active questions tagged dom - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T23:32:25Zhttp://stackoverflow.com/feeds/tag/domhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1941969/full-window-onclick-handler-in-firefox-and-internet-explorer1Full window onClick handler in Firefox and Internet ExplorerMark Klein2009-12-21T19:06:52Z2009-12-21T22:29:32Z
<p>I would like an event handler to fire whenever someone clicks anywhere on a window (so I can clear away a menu if they click someplace other than the menu). The following works in <a href="http://en.wikipedia.org/wiki/Safari%5F%28web%5Fbrowser%29" rel="nofollow">Safari</a>:</p>
<pre><code> function checkwho(ev) {
obj=(window.external) ? event.srcElement : ev.target;
var type=obj.nodeName;
if ((type == 'BODY') || (type == 'HTML') || (type == 'DIV')) clearmenus();
}
self.onclick=checkwho;
</code></pre>
<p>But it does not work in Firefox or Internet Explorer 6, i.e. the handler does not get invoked. How to make this work in Firefox and Internet Explorer?</p>
http://stackoverflow.com/questions/1942564/how-to-remove-an-individual-text-node-in-a-div-without-removing-all-of-them0How to remove an individual text node in a div without removing all of them?Jaden2009-12-21T20:54:03Z2009-12-21T21:21:00Z
<p>How do I go about removing an individual dynamically created text node? </p>
<p>I am generating input's on the fly and am using .createTextNode to place descriptive text before the elements. I need the ability to delete specific elements that are being created and am using .removeChild to do it. That works fine for removing an individual input because I have something to reference (id/name). Is there a way to set some sort of reference to each text node so I can delete it along with its corresponding input control? </p>
<pre><code>var box = document.getElementById("myDiv");
box.appendChild(document.createTextNode('Status: '));
var inp = document.createElement('input');
inp.type = 'text';
// add attributes, etc...
box.appendChild(inp);
</code></pre>
http://stackoverflow.com/questions/1942344/dom-to-use-with-spidermonkey1DOM to use with SpiderMonkey?DevDevDev2009-12-21T20:13:24Z2009-12-21T20:49:14Z
<p>I'm trying to use the GoogleMaps javascript library from inside of SpiderMonkey using the pythong wrapper, but I can't because of the lack of a DOM.</p>
<p>Is there some way I can integrate a DOM into this so that I can get this to work?</p>
http://stackoverflow.com/questions/1776481/how-to-append-dom-element-into-an-empty-element-in-javascript0How to append DOM Element into an empty element in JavaScript?Kaitsuli2009-11-21T19:32:02Z2009-12-21T17:47:03Z
<p>I have bunch of objects that return a DOM-tree that I then use to append to an element. For example,</p>
<pre><code>var elem = document.createElement('div');
elem.appendChild(callSomePrototypesMethod());
elem.appendChild(callSomePrototypesMethod());
elem.appendChild(callSomePrototypesMethod());
</code></pre>
<p>and I will eventually end up in something like:</p>
<pre><code><div>
<div id="...">...</div>
<div id="...">...</div>
<div id="...">...</div>
</div>
</code></pre>
<p>Those three DIVs were created by third party code, and I am wrapping them around my DIV tag here, but what I want instead is to just append them to an empty element, but it doesn't work:</p>
<pre><code>var elem = document.createElement('');
elem.appendChild(callSomePrototypesMethod());
elem.appendChild(callSomePrototypesMethod());
elem.appendChild(callSomePrototypesMethod());
</code></pre>
<p>Expected results:</p>
<pre><code><div id="...">...</div>
<div id="...">...</div>
<div id="...">...</div>
</code></pre>
<p>I'm not sure if this makes any sense to you, but I need to use DOM, and I can't put those content within any other elements...</p>
http://stackoverflow.com/questions/1938994/enable-checkbox-b-only-when-checkbox-a-is-enabled-and-the-other-way-around0Enable checkbox B only when checkbox A is enabled and the other way around.Ayrad2009-12-21T09:04:17Z2009-12-21T16:15:25Z
<p>I have a two columns of checkboxes with predictable names. How can I disable a checkbox in column B when the ones in column a is unchecked and only enable it when the first the checkbox a is enabled?</p>
<pre><code> <dmf:checkbox
name="someNameAColumnNumber"
value="true"
onclick = "enableColumnBCheckBox" runatclient="true"
/>
</code></pre>
<p>Is there something like on checkvalue = true set equivalent checkbox B to true and the other way around?</p>
<p><strong>EDIT</strong> the checkboxes are not in a form.. they are in a nested table.<br>
<strong>EDIT2</strong> should work only in IE6 (I know....) not looking for cross browser compatibility</p>
http://stackoverflow.com/questions/1938294/select-div-using-wildcard-id0Select div using wildcard IDNirmal2009-12-21T05:01:14Z2009-12-21T06:48:30Z
<p>How to select a div using it's ID but with a widcard?</p>
<p>If the DIV's ID is <code>statusMessage_1098</code>, I would like to select it in some way like <code>document.getElementById('statusMessage_*')</code>.</p>
<p>This is because until the page is generated, I don't know the suffix of the ID and only one such ID will be present in a page. Is this possible?</p>
<p>Thanks for any help.</p>
http://stackoverflow.com/questions/1938345/how-to-capture-all-changes-to-the-contents-of-a-body-element-in-js0how to capture all changes to the contents of a <body> element in JSEugene Efremov2009-12-21T05:20:23Z2009-12-21T05:30:24Z
<p>I am trying to write an extension for Google Chrome. I want to capture any keyboard input on a given page, and do something magic to it. I am able to do most of what I need with these lines:</p>
<pre><code>document.addEventListener("keydown", function(event) { OnKeyDown(event); }, false);
document.addEventListener("keyup", function(event) { OnKeyDown(event); }, false);
document.addEventListener("keypress", function(event) { OnKeyPress(event); }, false);`
</code></pre>
<p>This works in most places, except for Google Mail. I am not getting these events when typing into the body of an email, because as it turns out, it's actually a <code><body></code> element, inside an <code><iframe></code>.</p>
http://stackoverflow.com/questions/250688/count-immediate-child-div-elements-using-jquery6count immediate child div elements using jQueryDon2008-10-30T15:47:52Z2009-12-20T22:11:32Z
<p>Hi,</p>
<p>I have the following HTML node structure:</p>
<pre><code><div id="foo">
<div id="bar"></div>
<div id="baz">
<div id="biz">
</div>
<span><span>
</div>
</code></pre>
<p>How do I count the number of immediate children of "foo", that are of type "div". In the example above, the result should be two ("bar" and "baz").</p>
<p>Cheers,
Don</p>
http://stackoverflow.com/questions/1211426/how-to-unload-js-script-when-going-to-next-tab-in-jquery0How to unload js script when going to next tab in jquery?elhombre2009-07-31T09:02:15Z2009-12-20T00:49:46Z
<p>Hi All</p>
<p>I have a site with five tabs using jquery-ui. Each loads an individual jQuery script. Now when I have loaded the second tab and go to the third tab the js out of the second tab still remains active and disturbs my actions in the third tab space.</p>
<p>Can someone explain me why the js out of the second tab still stays active when changing to the third tab and how I can avoid such behaviour?</p>
http://stackoverflow.com/questions/1933631/how-do-i-parse-partial-html1How do I parse partial HTML?waiwai9332009-12-19T17:46:51Z2009-12-19T23:44:29Z
<p>I'm trying to parse some HTML with DOM in PHP, but I'm having some problems. First, in case this change the solution, the HTML that I have is not a full page, rather, it's only part of it.</p>
<pre><code><!-- This is the HTML that I have --><a href='/games/'>
<div id='game'>
<img src='http://images.example.com/games.gif' width='300' height='137' border='0'>
<br><b> Game </b>
</div>
<div id='double'>
<img src='http://images.example.com/double.gif' width='300' height='27' border='0' alt='' title=''>
</div>
</a>
</code></pre>
<p>Now I'm trying to get only the div with the id <code>double</code>. I've tried the following code, but it doesn't seem to be working properly. What might I be doing wrong?</p>
<pre><code>//The HTML has been loaded into the variable $html
$dom=new domDocument;
$dom->loadHTML($html);
$dom->preserveWhiteSpace = false;
$keepme = $dom->getElementById('double');
$contents = '<div style="text-align:center">'.$keepme.'</a></div>';
echo $contents;
</code></pre>
http://stackoverflow.com/questions/1933353/edit-existing-browser-window-dom0Edit existing browser window DOMNairou2009-12-19T16:33:27Z2009-12-19T18:49:02Z
<p>(Note: This question is for an internal-use-only project, so some of the usual security concerns don't apply.)</p>
<p>I'm trying to find some way to insert HTML/Javascript into a pre-existing IE7 browser window. Basically, we are using a web-based support ticket system, and I am inserting code into the page to add links and lists and such, to improve an otherwise clunky interface.</p>
<p>So far I have been able to open some browser windows myself, and then through ownership go in and edit them, but I haven't found a way yet to do the same for ticket windows opened directly by the user.</p>
<p>I've considered using ActiveX, or maybe wrapping the whole support site in a custom browser application, but without going through the time to try out each method I'd like to get some opinions on what might actually work, especially given the new security measures that IE7 and above have in place.</p>
http://stackoverflow.com/questions/1927081/problem-in-using-javascript-childnodes-length-property-with-elem0Problem in using javascript childNodes.length property with elem.kranthi2009-12-18T08:50:04Z2009-12-19T10:35:21Z
<p>Hi everyone,</p>
<p>I have a treeview with drag and drop functionality. Upon completion of drag and drop I need to find the count of the child nodes of the new parent node. So for that I'm using the following
lines</p>
<pre><code>var childnodelength=elem.parentNode.parentNode.childNodes.length;
alert(childnodelength);
</code></pre>
<p>But I always get the same value of 4 irrespective of the no. of childs, with the above alert.
I've also tried in the following way.</p>
<pre><code>alert(elem.getElementsByTagName("A")[0].childNodes.length);
</code></pre>
<p>Above line always gives me 1 irrespective of the no. of childs. I am not sure if I am referring correctly in both the ways.</p>
<p>And hence I'm unable to find the no. of child nodes.</p>
<p>Please could someone help me with this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1912334/replace-text-change-case-in-a-textbox-using-javascript3Replace text (change case) in a textbox using JavascriptPratyush2009-12-16T04:41:45Z2009-12-19T05:08:20Z
<p>I am trying to build a sort of intelli-sense text input box, where as the user types, the 'and' is replaced by 'AND \n' (i.e. on each 'and', the 'and' is capitalized and user goes to new line).</p>
<p>The Javascript I used for this is:</p>
<pre>
<code>
function Validate()
{
document.getElementById("search").value = document.getElementById("search").value.replace("and","AND \n"); //new line for AND
}
</code>
</pre>
<p>The HTML part is like this:
<code>
<pre>< textarea type="text" name="q" id="search" spellcheck="false" onkeyup='Validate();'>< /textarea>
</pre></code></p>
<p>Though the above script works well on Firefox and Chrome, it sort-of misbehaves on Internet Explorer (brings the cursor to the end of the text on each 'KeyUp').<br />
<br /> Also the above code doesn't work for the other variants of 'and' like 'And', 'anD' or even 'AND' itself.</p>
http://stackoverflow.com/questions/1283523/extracting-link-display-text-as-well-as-href-attribute-with-php-50Extracting link display text as well as href attribute with PHP 5Santhema2009-08-16T05:32:57Z2009-12-19T02:00:03Z
<p>$oldSetting = libxml_use_internal_errors( true );</p>
<p>libxml_clear_errors();
I have seen many examples on the web on how to extract the URLs from HTML with PHP 5's DOM functions, but I need to get the link text as well as the link. If I use the code below to extract the link "http//X.com" from the "href" attribute in the anchor tag <a href="http://X.com" rel="nofollow">YYYYY</a>, how do I get the corresponding "YYYYY" associated with it?</p>
<p>$html = new DOMDocument();</p>
<p>$html->loadHtmlFile($location);</p>
<p>$xpath = new DOMXPath($html);</p>
<p>$links = $xpath->query( '//a' );</p>
<p>foreach ( $links as $link )
{
$url_list[$i++] = $link->getAttribute( 'href' ) . "\n";
}</p>
<p>libxml_clear_errors();</p>
<p>libxml_use_internal_errors( $oldSetting );</p>
http://stackoverflow.com/questions/1918001/is-it-possible-to-access-a-web-pages-unparsed-css-text3Is it possible to access a web page’s unparsed CSS text?mazniak2009-12-16T21:47:33Z2009-12-18T19:53:34Z
<p>I want to parse the CSS files that are loaded with an HTML page but I don’t want to make AJAX calls to reload the CSS files that have already been loaded. Is there any way to access the pages unparsed CSS text?</p>
<p>For example, it would allow one to access -moz-* declarations in Safari.</p>
http://stackoverflow.com/questions/1409332/not-in-dom-after-load-with-jquery-1Not in DOM after $.load() with jQuery?Shore2009-09-11T06:41:36Z2009-12-17T21:06:56Z
<pre><code>var id = 'test';
var dom = $('#loader').clone().load("Views/chatBox.html");
dom.find('span.bn').text(id);
</code></pre>
<p>in chatBox.html,there is :</p>
<pre><code>...
<span class="bn">AAA</span>
...
</code></pre>
<p>I want to replace "AAA" with "test",but failed(dom.find can't fetch it),which mean it's not available instantly.</p>
<p>How to do it the right way?</p>
http://stackoverflow.com/questions/1893310/validate-dom-manipulation-when-using-selenium4Validate DOM manipulation when using SeleniumPaul Biggar2009-12-12T12:45:33Z2009-12-17T16:36:39Z
<p>I'm using Selenium to test my application. A nice test would be that after every DOM manipulation I would validate the DOM. Is there a nice way to do this?</p>
<p>Obvious ways are:</p>
<ul>
<li>use some builtin Selenium function. Is there one?</li>
<li>get the HTML of the DOM after the manipulation and use a local validator. However, I can't see how to get the HTML for the current DOM from Selenium.</li>
<li>I could go through javascript somehow, either by adding a JS file while testing or through Selenium. But I'm not sure how to go about this. Thoughts?</li>
</ul>
http://stackoverflow.com/questions/1823808/hiding-the-text-input-cursor-the-caret-showing-through-overlayed-elements-inter1Hiding the text input cursor (the caret) showing through overlayed elements Internet Explorerperrierism2009-12-01T03:27:06Z2009-12-17T15:07:17Z
<p>I have a form with a special widget that fills in a text input. When the text input has focus, the widget appears above the text input (intentionally above it) and the user clicks options in it, when they're done it disappears and fills in the input. There is a problem with this in IE, when the widget appears above the input, the field's caret (blinking text input cursor for the field) shows through the widget. The widget is a normal html/css dom structure. It still does this when I set the z-index for the widget to be above the text input. How can I get rid of the caret or make sure it doesn't shine through?
I don't want to set the focus elsewhere for the duration that the widget is shown because the widget requires that the input has focus.</p>
http://stackoverflow.com/questions/1920027/override-extend-javascript-method1(Override || Extend) Javascript MethodTheofanis Pantelides2009-12-17T07:23:08Z2009-12-17T10:56:00Z
<p>Hi,</p>
<p>I want to change the method DomElement.appendChild() to work differently when applied on an Object that I have created:</p>
<pre><code>// using MooTools;
var domElement = new Class({...});
var MyObject = new domElement(...);
$(document).appendChild(MyObject); // Error
// I want to add to (extend) appendChild, to do something specific, when:
alert(MyObject instanceof domElement); // true
</code></pre>
<p>I could do this by modifying the mootools.js, but I want to avoid this at all costs, because I am certain one day, some other developer will overwrite the js file with an updated version, and I will be imprisoned for murder.</p>
<p>Please, keep me out of jail!</p>
http://stackoverflow.com/questions/1918688/is-it-true-that-first-line-of-javascript-will-be-executed-only-after-all-script-t0Is it true that first line of Javascript will be executed only after all script tags with src attribute are downloaded and evaluated?wizard@2009-12-17T00:10:00Z2009-12-17T09:54:19Z
<p>By first line of Javascript I meant the JS code inside tags with no "src" attribute.</p>
http://stackoverflow.com/questions/1920256/sorting-xml-file1Sorting XML fileRonen2009-12-17T08:37:11Z2009-12-17T09:37:50Z
<p>Hi,</p>
<p>I need to sort an XML by tag names and attribute.
Is it possible using DOM?</p>
<p>I need the result in a sorted XML file not HTML.</p>
<p>for example:</p>
<pre><code><books>
<book id='1'>
<name value='N1'/>
<author value='A1'/>
</book>
<book id='3'>
<name value='N3'/>
<author value='A3'/>
</book>
<book id='2'>
<author value='A2'/>
<name value='N2'/>
</book>
</books>
</code></pre>
<p>I expect to get after sortXML ('id')</p>
<pre><code><books>
<book id='1'>
<author value='A1'/>
<name value='N1'/>
</book>
<book id='2'>
<author value='A2'/>
<name value='N2'/>
</book>
<book id='3'>
<author value='A3'/>
<name value='N3'/>
</book>
</books>
</code></pre>
<p>XML is sorted by <strong>tag names</strong> then by <strong>id</strong> </p>
http://stackoverflow.com/questions/1853662/how-to-show-page-loading-image-div-text-until-the-page-has-finished-loading-rende1How to show Page Loading image/div/text until the page has finished loading/renderingShadi Almosri2009-12-05T22:24:13Z2009-12-17T00:53:39Z
<p>Hiya,</p>
<p>I have a section on our website that loads quite slowly as it's doing some intensive calls. Any idea how i can get a div to say something similar to "loading" to show while the page prepares itself and then vanish when everything is ready?</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1917953/capturing-onload-event-when-dynamically-loading-js-files0Capturing onload event when dynamically loading .js files ?Ken2009-12-16T21:41:19Z2009-12-16T21:45:25Z
<p>Is there a capture the on load event when dynamically adding a script tag with JavaScript in IE?<br /></p>
<p>The code below works in FireFox and Chrome but not in IE.</p>
<pre><code> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
</head>
<body>
</body>
</html>
<script type="text/javascript" language="javascript">
var elemScript = document.createElement("script");
elemScript.onload = function() {
$("body").html("<div>jQuery Loaded !</div>");
};
elemScript.type = "text/javascript";
elemScript.src = "script/jquery.js";
document.getElementsByTagName("head")[0].appendChild(elemScript);
</script>
</code></pre>
http://stackoverflow.com/questions/1917040/can-i-get-the-full-html-represenation-of-an-htmlelment-dom-object0Can I get the full HTML represenation of an HTMLElment DOM object?MarcosPri2009-12-16T19:26:07Z2009-12-16T19:37:48Z
<p>Hi,</p>
<p>I'm using jquery to parse some HTML, something like:</p>
<pre><code>$(html).contents().each(function(){
var element = this.tagName;
...
</code></pre>
<p>I can access the tagName, children, parent... using the DOM or the more friendly jQuery functions.</p>
<p>But at one point a need the whole HTML of the current element (not what <code>innerHTML</code> or <code>.html()</code> return) and I can't figure out a one liner to get it (I always could attach the tag and the attributes manually to the innerHTML).</p>
<p>For example:</p>
<pre><code><a href="link">Link</a>
</code></pre>
<p>The <code>innerHTML</code> is <code>Link</code> but I'm looking for the whole <code><a href="link">Link</a></code></p>
<p>does that oneliner exists?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1915341/whats-wrong-with-adding-properties-to-dom-element-objects2What's wrong with adding properties to DOM Element objects?stephband2009-12-16T15:25:16Z2009-12-16T16:09:57Z
<p>I've been looking for a straight answer for this (I can think of lots of possiblities, but I'd like to know the true reason):</p>
<p>jQuery provides a .data() method for associating data with DOM Element objects. What makes this necessary? Is there a problem adding properties (or methods) directly to DOM Element Objects? What is it?</p>
http://stackoverflow.com/questions/770475/dom-properties-methods-that-arent-available-in-jquery2DOM properties/methods that aren't available in jQuery?RedWolves2009-04-20T23:27:22Z2009-12-16T16:02:03Z
<p>Following up on my <a href="http://stackoverflow.com/questions/765698/jquery-get-practical-uses">question about jQuery.get()</a> I was wondering if there is a list of DOM properties and methods that aren't available in jQuery that can only be accessible if you were working with the raw DOM object (i.e. $("#someID").get().scrollHeight; )</p>
http://stackoverflow.com/questions/1910794/jquery-text-vs-html1jQuery: text() vs html() ?Brettk2009-12-15T22:13:34Z2009-12-16T00:16:01Z
<p>Using jQuery, what the difference between:</p>
<pre><code>$("#div").html('<a href="example.html">Link</a><b>hello</b>');
</code></pre>
<p>vs</p>
<pre><code>$("#div").text('<a href="example.html">Link</a><b>hello</b>');
</code></pre>
http://stackoverflow.com/questions/1910986/in-vb-how-can-i-use-a-website-url-to-create-an-htmldocument-object-that-contains0In VB how can I use a website url to create an HtmlDocument object that contains all the html from that webpage?Matt2009-12-15T22:43:50Z2009-12-15T23:23:45Z
<p>I was trying to use HtmlDocument and a given url to pull in the html contents of a website to use. However there is no constructor for HtmlDocument and it's Url property is readonly. </p>
<p>Is there any way to create an object that contains the entire DOM for a given url?</p>
<p>Thanks,<br/>
Matt</p>
http://stackoverflow.com/questions/1910178/dom-and-linq-difference0DOM and LINQ DifferenceDilson2009-12-15T20:30:26Z2009-12-15T22:33:03Z
<p>DOM and LINQ both are in-memory pattern.</p>
<p>Apart from deferred execution,what is the difference between DOM and LINQ?</p>
http://stackoverflow.com/questions/1908410/parsing-xml-file-in-python1Parsing xml file in pythonunknown (google)2009-12-15T15:57:26Z2009-12-15T21:25:13Z
<p>I have an XML file in the following format:</p>
<pre><code><doc>
<id name="X">
<type name="A">
<min val="100" id="80"/>
<max val="200" id="90"/>
</type>
<type name="B">
<min val="100" id="20"/>
<max val="20" id="90"/>
</type>
</id>
<type...>
</type>
</doc>
</code></pre>
<p>I would like to parse this document and build a hash table</p>
<pre><code>{X: {"A": [(100,80), (200,90)], "B": [(100,20), (20,90)]}, Y: .....}
</code></pre>
<p>How would I do this in python?</p>