I load jquery in my jsf project. I load header part only.
Before i load the jquery, link and menu actions are perfectly worked. (Not load jquery) <
I got the answer.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<a4j:loadScript src="resource:///org/richfaces/renderkit/html/scripts/jquery/jquery.js" />
<a4j:loadScript src="../scripts/highcharts.js"/>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function()
{
....
....
});
</script> </head>