jquery missing

Hello,

in some of my views (views/progetti_homepage/view.php) jquery is not included, i.e.




<script type="text/javascript" src="/federico/wedoowebsite/assets/47460d57/jquery.js"></script>

<script type="text/javascript" src="/federico/wedoowebsite/assets/47460d57/jquery.yii.js"></script>



is missing in the head tag, while in all other views is included…

i don’t have a clue… does anyone know why?

thanks a lot,

joey

jQuery is included automatically by some components when they need it. You can also include it by using registerCoreScript function:




Yii::app()->clientScript->registerCoreScript('jquery');



thanks a lot! :)