Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

It's important to understand which type of scripts are going to be excluded from the HTML page .Based on the using the settings provided in the Configuration page.

Based on the localhost Examplereview the following information.

Source code of localhost HTML page:

Code Block
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Localhost</title>
    <style type="text/css" media="screen">
  	...
    </style>
	<script language="javascript" src="externalScript.js"></script>
	<script language="javascript">
		console.log("Inline Scripting in the head");
	</script>
	<script language="javascript">
		console.log("Inline Scripting in the head 2");
	</script>
	<script language="javascript">
		console.log("Inline Scripting in the head 3");
	</script>
  </head>

  <body>
	<script language="javascript">
		console.log("Inline Scripting in the BODY 1");
	</script>

	<script language="javascript">
		console.log("Inline Scripting in the BODY 2");
	</script>

    <div class="main_page">
	<h1>This is where the main Contents of the body will reside!</h1>
    </div>
  </body>
</html>

Any references made using <script> tags will be excluded from the source code which will be submitted for rendering.