Tagged Questions
3
votes
4answers
8k views
setAttribute, onClick and cross browser compatibility
I have read a number of posts about this but none with any solid answer. Here is my code:
// button creation
onew = document.createElement('input');
onew.setAttribute("type", "button");
...
1
vote
1answer
319 views
node.setAttribute causes INVALID_CHARACTER_ERR
I have the following code in a function:
this.HtmlRef = document.createElement( "canvas" );
if (!this.HtmlRef)
{
return false;
}
this.HtmlRef.appendChild( document.createTextNode( ...
0
votes
0answers
138 views
php: max-width ignored by setAttribute() on a DOMNode
For a bit of background, I am writing code to parse embed code and tweak the style. In theory I want it to accept any html even if it doesn't have an embed tag, so the code below just styles the first ...
0
votes
1answer
206 views
Insert created element at start of html tag using PHP DOM
I'm trying to insert an HTML <base> tag immediately after the opening <head> tag of a page using dom. I've tried using appendChild which just inserts it before the </head> which is ...