Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
<!DOCTYPE html> <html> <head> </head> <body> <p id="p-id"></p>
<script> function set_p(text) { document.getElementById('p-id').innerHTML = text; } set_p("p tag text") /* run: "p tag text" text in "p-id" */ </script>
</body> </html>