I need to use some fairly complex Jquery plugins that aren't just a single .js file, but rather need an entire folder that contains css, images, etc.. I am not understanding how to include this using cakephp, I suppose I could do it from the layout in a traditional HTML manner, but it would be nicer to just do it the Cakephp way, the jquery plugin tells me to do this to include the folder:
<link id="bespin_base" href="/path/to"/>
But I don't quite get how to do this in cakephp.. would it be my server-side path, such as "/var/www/jquery/plugin.. etc"? Thanks for any info..
the way I normally include a jquery plugin is just like this, and similar for css but I don't want to have to manually include each file:
echo $html->script('plugin', false);