Welcome Guest, Not a member yet? Register   Sign In
how to jquery load and use in codeigniter?
#4

[eluser]Jan_1[/eluser]
you could load jquery in header from google for example.
header and footer have mostly the same content on all sites.
maybe you cut your views into 3 parts/files.

the following is just systematicaly - hope I do no mistakes.
tell me if it is a help or if i can do more.

some_controller.php
Code:
function index()
{
  $data['content']  = "Welcome to my homepage";
  $data['page']     = 'artikel/home';
  $this->load->view('template_view', $data);
}

template_view.php
Code:
<?php
$this->load->view('template/header');
$this->load->view('template/content');
$this->load->view('template/footer');
?>

header.php
Code:
// all header stuff and...

<#script type="text/javascript" src="http://www.google.com/jsapi?key=YOUR-GOOGLE-API-KEY">
google.load("jquery", "1.3.2");     // whatever you need
google.load("jqueryui", "1.7.2");   // whatever you need else
<#/script>              // remove the #  ;o)

content.php
Code:
&lt;?php
if(isset($page)){ $this->load->view($page);}
?&gt;

home.php
Code:
&lt;?php
echo $content;
?&gt;


Messages In This Thread
how to jquery load and use in codeigniter? - by El Forum - 07-30-2010, 10:05 PM
how to jquery load and use in codeigniter? - by El Forum - 07-30-2010, 11:24 PM
how to jquery load and use in codeigniter? - by El Forum - 07-31-2010, 11:53 PM
how to jquery load and use in codeigniter? - by El Forum - 08-01-2010, 01:04 AM
how to jquery load and use in codeigniter? - by El Forum - 08-01-2010, 01:05 AM
how to jquery load and use in codeigniter? - by El Forum - 08-01-2010, 01:09 AM
how to jquery load and use in codeigniter? - by El Forum - 08-02-2010, 08:23 PM
how to jquery load and use in codeigniter? - by El Forum - 08-02-2010, 10:19 PM
how to jquery load and use in codeigniter? - by El Forum - 08-03-2010, 01:52 AM
how to jquery load and use in codeigniter? - by El Forum - 08-03-2010, 10:33 PM
how to jquery load and use in codeigniter? - by El Forum - 08-04-2010, 01:23 PM
how to jquery load and use in codeigniter? - by El Forum - 08-04-2010, 08:00 PM



Theme © iAndrew 2016 - Forum software by © MyBB