Notes on using TwitterBootstrap with cakePHP

A0002 011084

I was quite hooked. When I use Bootstrap tabs in cakePHP, I can view them, but the tabs don't work when I click on a button. Apparently, the order in which the JavaScript was loaded was the cause.

Correct.

<?php echo $this->Html->script('jquery');?> 
<?php echo $this->Html->script('bootstrap');?> 

Does not work with the following

<?php echo $this->Html->script('bootstrap');?> 
<?php echo $this->Html->script('jquery');?> 

Let's be careful not to forget this as we are likely to get stuck in the future.