Assume I want to add/append many HTML tags and text to an existing/current web 
page?

Doing it step-by-step with

var x = document.createElement("hello"); 
document.body.appendChild(x); 
var x = document.createElement("<P>"); 
document.body.appendChild(x); 
var x = document.createElement("&nbps;"); 
document.body.appendChild(x); 
var x = document.createElement("<br>"); 
document.body.appendChild(x); 

seems to be rather unconvenient.

Is there a mass adding command?

Ben





--

You received this message because you are subscribed to the Google Groups 
"greasemonkey-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/greasemonkey-users?hl=en.


Reply via email to