Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,988 questions

51,933 answers

573 users

How to write into the HTML output using JavaScript

4 Answers

0 votes
<!DOCTYPE html>
<html>
<body>

<button type="button" onclick="document.write(1 + 9)">Run</button>

</body>
</html>

/*
run:

10
*/



answered May 31, 2015 by avibootz
edited May 31, 2015 by avibootz
0 votes


// JavaScript

function writeInHTML(s)
{
    document.write(s);
}

/*
run:
 
Your Text...
 
*/

// PHP

echo "<script> writeInHTML('Your Text...'); </script>";


answered May 31, 2015 by avibootz
0 votes
<!DOCTYPE html>
<html>
<body>

<script type="text/javascript">
document.write(1 + 10);
</script>

</body>
</html>

<!--
run:

10
-->



answered Jun 1, 2015 by avibootz
edited Jun 2, 2015 by avibootz
0 votes
<!DOCTYPE html>
<html>
<body>

<script type="text/javascript">
document.write("Your Text...");
</script>

</body>
</html>

<!--
run:

10
-->



answered Jun 1, 2015 by avibootz
edited Jun 2, 2015 by avibootz
...