I just remove some scripts froom my Joomla site by adding a few lines to my Joomla default template index.php file.
I added these lines.
//remove mootools.js and caption.js
$headerstuff=$this->getHeadData();
reset($headerstuff['scripts']);
foreach($headerstuff['scripts'] as $key=>$value){
unset($headerstuff['scripts'][$key]);
}
$this->setHeadData($headerstuff);
It looks like this in my template index.php file.
<?php
//remove mootools.js and caption.js
$headerstuff=$this->getHeadData();
reset($headerstuff['scripts']);
foreach($headerstuff['scripts'] as $key=>$value){
unset($headerstuff['scripts'][$key]);
}
$this->setHeadData($headerstuff);
defined( '_JEXEC' ) or die( 'Restricted access' );
JPlugin::loadLanguage( 'tpl_SG1' );
?>
Now my page loads in 3-4 seconds instead of 6 seconds.
I learned how to remove from Joomla mootools.js and caption.js from Joomla1.5 at :
http://www.eboga.org/cms/joomla/how-to- ... mla15.html