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
...