Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
190 views

when is “DOMNodeInserted” event called?

DOMNodeInserted event is called when the node "be appended to", or "be appended"? I ask this because the following code: function AddTextToContainer () { var textNode = document.createTextNode ...
2
votes
2answers
26 views

PL/SQL Raw datatype variable comparison

Is it possible to compare variables of raw datatypes? I'm working with XMLDOM.DomNodes, which is records with one field by itself: TYPE DOMNode IS RECORD (id RAW(12)); So I have two nodes, then ...
2
votes
4answers
178 views

What's the difference between a jQuery object and a DOM element? Difference between .get() and .index()?

I'm lead to this question when trying to figure out the difference between jQuery's .get() and .index(), I've looked over the jQuery API and I still don't get what the difference is between them, ...
2
votes
1answer
354 views

Get offset of node in whole html document in Javascript?

I'm looking for a way to get the offset relative to the whole document for a given node with Javascript. Eg.: <html><head></head><body><div id="mainContent"><h1 ...
1
vote
1answer
28 views

getAttribute() of DOMNode in PHP doesn't work with a variable in DOMXPath query. Why?

I have this program with a switch: $htmlContent = file_get_contents('http://somesite.com'); $htmlDOM->loadHTML( $htmlContent ); $htmlXPath = new DOMXPath( $htmlDOM ); for($i = 0; $i <= 16; ...
1
vote
2answers
231 views

dom childNodes issue

I seem to be getting different results of fromDate between Mozilla and IE. Is there a more reliable cross-browser way of doing this? [edit] I am actually getting different column values! [/edit] ...
1
vote
2answers
357 views

Check if variable is a valid node element

How can I change a JS element to see if it is a node or an empty variable?
1
vote
1answer
178 views

Adding a node with jQuery in a Firefox extension

I suspect that jQuery is not working ok in my extension... I'm using version 1.3.2, loaded with the following rows: var loader = Components.classes["@mozilla.org/moz/jssubscript-loader;1"] ...
0
votes
1answer
53 views

Modifying element from google.translate.TranslateElement results

I'm attempting to embed the very convenient Google Translate translate element into a webpage, which is super simple and works great, but I need to change the default text that displays in the ...
0
votes
1answer
54 views

How to get the elements bound to a model in Knockoutjs

I want to add a product, find the node an let it flash products = observableArray([]); new_product = new Product(); products.push(new_product); $("tr", new_product.elements).flash(); I tried using ...
0
votes
1answer
113 views

removeChild with PHP DOM doesn't work

I have the following code: $doc = new DOMDocument(); $doc->loadHTML($quiz['value']); $imageElement = $doc->getElementsByTagName('img')->item(0); } if(is_object($imageElement)){ $image = ...
0
votes
1answer
138 views

DOMElement in Delphi

how i can use .getElementsByTagName in DOMNodeList Object ? Like: procedure TForm1.selecionarClick(Sender: TObject); var DOMDocument: iXMLDOMDocument; DOMNodeList: iXMLDOMNodeList; ...
0
votes
4answers
116 views

Grab any Text Node within the BODY using Jquery

Hoping someone can help. I need to grab any text node inside the body. Even if it is NOT contained within any other element. I've tried: $("p, div, html, body").each(function(){ ...