Tagged Questions

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 ...
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 ...
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
1answer
389 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
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 = ...