Tagged Questions

0
votes
1answer
33 views

Problem in using javascript childNodes.length property with elem.

Hi everyone, 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 …
3
votes
6answers
104 views

Replace text (change case) in a textbox using Javascript

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). The …
3
votes
4answers
130 views

Is it possible to access a web page’s unparsed CSS text?

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 …
1
vote
2answers
79 views

(Override || Extend) Javascript Method

Hi, I want to change the method DomElement.appendChild() to work differently when applied on an Object that I have created: // using MooTools; var domElement = new Class({...}); var MyObject = new …
0
votes
3answers
70 views

Is it true that first line of Javascript will be executed only after all script tags with src attribute are downloaded and evaluated?

By first line of Javascript I meant the JS code inside tags with no "src" attribute.
2
votes
3answers
75 views

What’s wrong with adding properties to DOM Element objects?

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): jQuery provides a .data() method for associating data with DOM Element …
0
votes
2answers
41 views

Can I get the full HTML represenation of an HTMLElment DOM object?

Hi, I'm using jquery to parse some HTML, something like: $(html).contents().each(function(){ var element = this.tagName; ... I can access the tagName, children, parent... using the DOM or the …
1
vote
3answers
45 views

Sorting XML file

Hi, I need to sort an XML by tag names and attribute. Is it possible using DOM? I need the result in a sorted XML file not HTML. for example: <books> <book id='1'> <name …
0
votes
1answer
22 views

Capturing onload event when dynamically loading .js files ?

Is there a capture the on load event when dynamically adding a script tag with JavaScript in IE? The code below works in FireFox and Chrome but not in IE. <!DOCTYPE html PUBLIC "-//W3C//DTD …
1
vote
6answers
97 views

Parsing xml file in python

I have an XML file in the following format: <doc> <id name="X"> <type name="A"> <min val="100" id="80"/> <max val="200" id="90"/> </type> <type …
1
vote
5answers
111 views

jQuery: text() vs html() ?

Using jQuery, what the difference between: $("#div").html('<a href="example.html">Link</a><b>hello</b>'); vs $("#div").text('<a …
1
vote
1answer
35 views

From Sax to Dom with DTD (python)

I need a validated DomTree with DTD (to use getElementById). Validating and Parsing works, but the dom does't work properly: from xml.dom import minidom from xml.dom.pulldom import SAX2DOM from lxml …
0
votes
2answers
21 views

In VB how can I use a website url to create an HtmlDocument object that contains all the html from that webpage?

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. Is there any …
1
vote
3answers
31 views

jquery not updating DOM after $.getJSON in IE/Internet Explorer

I have a page that contains an element, <displayedimage>, that is not getting updated using jquery's document.ready/$.getJSON funcitonality in IE 6 and IE 8 (probably IE 7 too even though I …
-3
votes
6answers
152 views

An other way to load a js file in js code

I opened a javaScript file in a javaScript time.... document.write("<script src='newnote.js' type='text/javascript'></script>"); is there an other way to load the js in js code..? …

1 2 3 4 5 81 next
15 30 50 per page