Welcome Guest, Not a member yet? Register   Sign In
Numerous CSS and Scripts Loading in Every View
#35

[eluser]pickupman[/eluser]
I use a similar method as well. I use different plugins for certain pages, so I use in my controller
Code:
$data['js'] = array('jquery/jquery_live','jquery/jquery_cycle');
$this->load->view('page',$data);
I have a jquery subfolder under views, and have /application/views/jquery
Code:
//jquery_live.php
<scrpt type="text/javascript" src="&lt;?=base_url();?&gt;js/jquery.live.packed.js"></scrpt>
Then I use in the main view
Code:
&lt;html&gt;
&lt;head&gt;
&lt;?php
if(isset($js))
{
   foreach($js as $j)
   {
     $this->load->view($j);
   }
}
I do this because I'll use the jquery UI for a page needing drag-n-drop, animation easing.


Messages In This Thread
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-18-2009, 10:51 PM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-18-2009, 10:57 PM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-18-2009, 11:33 PM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-18-2009, 11:44 PM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-18-2009, 11:55 PM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 01:39 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 02:13 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 02:35 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 03:13 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 06:46 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 08:08 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 08:13 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 08:19 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 08:29 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 08:50 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 09:01 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 09:07 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 09:23 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 09:28 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 09:34 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 09:37 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 09:40 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 09:43 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 10:49 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 02:06 PM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 02:21 PM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 02:26 PM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 02:29 PM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 02:33 PM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 02:40 PM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 02:41 PM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-19-2009, 11:10 PM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-20-2009, 04:30 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-29-2009, 08:07 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-29-2009, 08:47 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-29-2009, 09:26 AM
Numerous CSS and Scripts Loading in Every View - by El Forum - 05-30-2009, 11:22 AM



Theme © iAndrew 2016 - Forum software by © MyBB