Home » JSF Relocatable Resources

JSF Relocatable Resources

by Online Tutorials Library

JSF Relocatable Resources

JSF provides a facility to place your resources at any section of your web page and render it to another section. . You can relocate your resource by specifying target attribute.

You can pass following attributes to relocate in the target attribute.

head: It is used to render the resource in head section.

body: It is used to render the resource in the body section,

form: It is used to render the resource in the form section.


JSF Relocatable Resources Example

In the following example, we have placed JavaScript file inside the form tag and specified target to head section.

// index.xhtml

Source code of the above web page(index).

You can see that the JavaScript is relocated into the head section.

JSF Relocatable resources 1

You may also like