Tuesday, March 12, 2013

Add Css and Javascript In Joomla 2.5

Its Important How to add css ,javascript and jquery in joomla 2.5.Joomla is one of the most popular content management system and its also a freeware opensource.


See the below code to add css :



$document =& JFactory::getDocument();
$filename = 'style.css'; // this file is used for class="hasTip3"
    $path = 'modules/mod_guestbook/css/'; // path to the file
    JHTML::stylesheet($filename, $path);

www.starplus.in See the below code to add Js:



$js1 = 'jquery.js'; // this file is used for class="hasTip3"
    $js2 = 'dropmenu.js'; // this file is used for class="hasTip3"
    $path2 = 'modules/mod_guestbook/js/'; // path to the file
    JHTML::script($js1, $path2);
    JHTML::script($js2, $path2);
    


 



No comments:

Post a Comment

Thanks....