Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
3k views

DOMElement cloning and appending: 'Wrong Document Error'

There's something I don't fully understand about node cloning with the PHP's DOM api. Here's a sample file that quickly duplicates the issue I'm coming across. $doc = new DOMDocument( '1.0', ...
5
votes
3answers
329 views

PHP DOM - append source html to a DOMElement

is there a way of appending source html into a DOMElement? Something like this: $trElement->appendSource("<a href='?select_user=4'>Username</a>"); it would parse that fragment and ...
4
votes
2answers
391 views

Wrapping a DOM element inside a JavaScript object

I've noticed a common pattern in the JavaScript I've been writing and was wondering if there is already a pattern out there that defines something similar as best practice? Essentially, it's how to ...
3
votes
3answers
2k views

PHP: DomElement->getAttribute

How can I take all the attribute of an element? Like on my example below I can only get one at a time, I want to pull out all of the anchor tag's attribute. $dom = new DOMDocument(); ...
2
votes
3answers
87 views

Find dom elements containing text and other dom elements inside

I'm trying to apply a class to all elements which contain text or which contain text and other dom elements inside. At least there must be some sort of text inside the element. This div should get ...
2
votes
4answers
102 views

How to determine whether a specific DOM element is visible or not?

Using jQuery, what is the easiest way to determine whether a particular element is visible? I don’t mean visible within the current viewport, but on the page. Ideally, the function should return ...
2
votes
5answers
136 views

JQuery See through dialog overlay

There are several JQuery plugins to put a modal dialog and show a dom element in the dialog. But I'm looking for a dialog overlay which can show some portion of the screen and these region should be ...
2
votes
4answers
148 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
3answers
350 views

Replace specific <font> tag with <span> using DOM manipulation in PHP

I'm trying to replace all tags with tags using DOMDocument in PHP and almost all my tests passed. I'm sure there are other scenarios I'm forgetting, but for now, I'm missing just one: ORIGINAL: ...
2
votes
3answers
113 views

how to handle DOM in PHP

my PHP code $dom = new DOMDocument(); @$dom->loadHTML($file); $xpath = new DOMXPath($dom); $tags = $xpath->query('//div[@class="text"]'); foreach ($tags as $tag) { echo ...
2
votes
3answers
442 views

Extend DOMElement object

How could I extend objects provided with Document Object Model? Seems that there is no way according to this issue. class Application_Model_XmlSchema extends DOMElement { const ELEMENT_NAME = ...
2
votes
2answers
2k views

PHP DOMDocument replace DOMElement child with HTML string

Using PHP I'm attempting to take an HTML string passed from a WYSIWYG editor and replace the children of an element inside of a preloaded HTML document with the new HTML. So far I'm loading the ...
2
votes
2answers
735 views

jQuery - returning $(this) DOM Element

i'm using DD_Belated.png to save all IE6 users from seeing the madness of unsupported png. However, this great script takes either selector or DOM Element as parameter to it's only function to do ...
1
vote
3answers
41 views

Get DOMElement with specific text PHP / XPath

In PHP, i want to get all DOMElement containing a given text. I get DOMText when $xpath->query("//text()[contains(., 'My String')]"), but which query must i perform for getting DOMElement instead? ...
1
vote
0answers
31 views

An Issue with event mapping after rotating an image DOM element

I have applied transform on an image and also on a view which is holding that image. The parent view that hold an image has two more small images at its edges, where I handled mouse events to rotate ...
1
vote
1answer
45 views

Query DOMElement's parent - XPath

I'm using XPath/PHP to parse HTML of a given URL. Let's say I have the desired node in the DOMElement object $element. How can I perform a query on the parent node of $element? Appreciate any help.
1
vote
1answer
44 views

Zend_Feed: getting the Image URL from a Feed

What is the correct way to go after items more than one level deep with the Zend_Feed library? How should the second to last line of code read? require_once 'Zend/Feed/Rss.php'; $url = ...
1
vote
1answer
58 views

How to retrieve the element where a contextmenu has been executed

I am trying to write a google chrome extension where I use a contextmenu. This contextmenu is available on editable elements only (input texts for example). When the contextmenu is clicked and ...
1
vote
3answers
49 views

using jQuery selector with a dom element

I have a javascript function that receives a dom element as a parameter. In this function I am trying to get to the closest ancestor 'form'. I wanted to use: function submit_form(obj) { var ...
1
vote
2answers
113 views

Get Text from a Div with specific ID's using DOM (getElementById help)

I have the following code snippet I'm trying to get the text from: <span class="article-title1"><div id="user-sub-summary">Love to get text</div></span> <div ...
1
vote
2answers
79 views

Reason for DOMElement::getAttribute() returning an empty string when there is no such attribute

In the php docs it says: Return Values The value of the attribute, or an empty string if no attribute with the given name is found. Does anybody know the reason for returning an empty ...
1
vote
1answer
194 views

How do I get the line number of a DOMElement?

I'm trying to get the line number of a DOMElement object in PHP - the documentation says DOMElement extends DOMNode which implements the getLineNo() method, however, when I try to use this method I ...
1
vote
1answer
109 views

Get a reference to a Canvas element from its context?

In one part of my code, I call getContext('2d') on a canvas element to produce a CanvasRenderingContext2D object. That object goes on to get passed around a fair bit from function to function, and at ...
1
vote
1answer
314 views

Get notified when objective-c dom updates are ready initiated from webview

I am programmatically updating the DOM on a WebKit webview via DOMElement objects - for complex UI, there is usually a javascript component to any element that I add. This begs the need to be notified ...
1
vote
2answers
352 views

Not finding elements using getElementsByTagName() using DomDocument

I'm trying to loop through multiple <LineItemInfo> products contained within a <LineItems> within XML I'm parsing to pull product Ids out and send emails and do other actions for each ...
1
vote
1answer
1k views

PHP XML node deletion

i have an XML file with large number of tags. it has more than 2000 tag here and there. i want to delete all that htmlText Tag and save it as a new xml. how cani do that in PHP??? here is the code ...
1
vote
1answer
922 views

How can I change the name of an element in DOM?

In PHP with DOM, I have a DomElement object which represents an <identity/> element. I have one case where I need to change this so its element name is <person/>, but keep the same child ...
0
votes
5answers
73 views

HTML DOM element name as a string

Suppose I have the following HTML snippet: <input type="text" id="myinput" /> Now I want to get that DOM element using JavaScript: var element = document.getElementById("myinput"); Works ...
0
votes
2answers
30 views

Save DOMobject as String

Heyho, imagine, you have a DOMelement like text and you have saved this in a variable elem in a function function(elem){ var elem=elem; } And NOW you want (in fact it is me who wants that :-)) ...
0
votes
2answers
28 views

php DomDocument + directly access xml element

Can anyone advise on the fastest, least resource intensive method by which I can see whether 'Column Name=Error' exists please? I don't want to parse the document, but simply check if elements ...
0
votes
1answer
57 views

How do I get the size of a <body> element once rendered in webkit?

An HTML page can have many different elements inside it which make up the content of the page. I want to know the total size of all of the content of the page. NOT the size of the WebView window, but ...
0
votes
0answers
37 views

Why doesn't apple.com have documentation for the DOMElement class?

Why Apple doesn't have documentation of some classes like DOMElement while it does document most part of the Webkit? There's a mention to a DOMElement Additions Reference but nothing else. I couldn't ...
0
votes
0answers
75 views

PHP DOMElement getAttribute Absolute Path URL?

EDIT: To achieve the URL I wanted, you would have to normalize/canonicalize it, as pointed out my Marc. To accomplish this, you can use a class such as the pear class suggested by Marc, or you could ...
0
votes
1answer
78 views

Extended DOMElement object loses it's properties when imported into another document

When importing an extended DOMElement object with specific properties into another DOMDocument than the one it was created with all properties are lost (I guess it doesn't actually copy the no but a ...
0
votes
2answers
64 views

Transofrmations on dom elements

Hay all, At first I was really excited about HTML5's canvas element. But It will not work for my idea now that i understand what it is intended for. Basically I want to display an unordered list in ...
0
votes
0answers
99 views

Extended DOMElement object changes to another class

I'm currently working on a class to generate a flow chart using SVG. For this I use a number of classes that replace the standard PHP DOM classes. For the elements in the chart I use a class ...
0
votes
1answer
177 views

PHP DOMElement, replacing text of a node

I have a HTML node like so: <b>Bold text</b> A variable $el contains a DOMElement reference to the text of that HTML node ("Bold text"), got from the XPath expression //b/text() I want ...
0
votes
2answers
393 views

PHP's DomElement->nodeValue has gobbly-gook

I'm parsing a third-party web page using PHP's DOMElement controls. When I use the web page with my browser and view the source, it's clean, but when I access some of the nodes through the ...
0
votes
4answers
219 views

Accessing properties of html element inside javascript function using $(this) gives undefined

I am calling a function test() on an anchor tag like this:- <a class="link" onclick="test();">Hello</a> And I am trying to access the class of the anchor inside the function test():- ...
0
votes
2answers
299 views

OOP - Extending DOMElement in PHP with registerNodeClass

registerNodeClass is great for extending the various DOMNode-based DOM classes in PHP, but I need to go one level deeper. I've created an extDOMElement that extends DOMElement. This works great with ...
0
votes
1answer
390 views

How do I display a DOMElement?

I'm using readability's code to extract HTML from a web page. How do I display it on a page? $content = grabArticle($webpage); echo $content; ERROR => Object of class DOMElement could not be ...
0
votes
2answers
1k views

Is there a way to get all of a DOMElement's attributes?

I'm reading some XML with PHP and currently using the DOMDocument class to do so. I need a way to grab the names and values of a tag's (instance of DOMElement) attributes, without knowing beforehand ...
0
votes
7answers
715 views

JQuery - Hardcoding HTML in Javascript - Is there a better way to dynamically create dom elements?

I have a lot of messages, and raw HTML that I hard code in my javascript code, such as: var subjectId = $(subject).attr('subjectId'); var subjectName = $(subject).attr('subjectName'); var html = ...
0
votes
2answers
1k views

Is there a better way to change a DOMElement->tagName property in php?

I just ran into this building a Textbox control for my MVC framework, where just before finalizing the whole document I call PreRender on everything that inherits from ServerTag (which in turn ...
-1
votes
1answer
55 views

Digging deeper into DOMElement

I've used Zend_Dom_Query to extract some <tr> elements and I want to now loop through them and do some more. Each <tr> looks like this, so how can I print the title Title 1 and the id of ...