Adding Header Content Using Adaptive Tags
The pt:common.includeinhead and headincludes tags allow
you to include custom JavaScript and CSS information in the Head element
of the HTML page.
The
pt:common.includeinhead tag marks
the JavaScript and CSS information to be included in the Head element
of the HTML page by the
pt:common.headincludes tag.
If a .js or .css file is marked for inclusion multiple times, it will
only be included once. JavaScript generated by tags will also be included.
Note: This tag will be ignored during automatic in-place refresh requests.
Custom in-place refresh solutions must ensure that JavaScript gets
included correctly.
<pt:common.includeinhead>
<script type="text/javascript"><!-- JavaScript --></script>
<script type="text/javascript" src="http://test.com/test.js"></script>
<link type="text/css" rel="stylesheet" href="http://test.com/test.css"></link>
</pt:common.includeinhead>
The
pt:common.headincludes tag adds JavaScript and stylesheet include information defined by
the
pt:common.includeinhead tag to the Head element
of the HTML page, as required by the XHTML specification. If no
pt:common.headincludes tag is present, JavaScript will
be included at the bottom of the Head element, and a Head element
will be inserted if one does not exist.
<head>
<script type="text/javascript" src="http://test.com/main.js"></script>
</head>
The pt:common.jstransform tag inserts the Oracle WebCenter Interaction Scripting
Framework headers into the Head element of the Oracle WebCenter Interaction
portal page (cannot be used in Oracle WebCenter Ensemble).