[eluser]Pascal Kriete[/eluser]
Usually it's quite simple, but it sounds like the application your working on has been changed a bit.
The normal way:
Take all the variables you need in your view and put them in an associative array, such as:
Code:
$view_vars = array('test' => $var, 'test2' => 'cool');
(it could be $this->view_vars, $jj->mydingojumps, or anything else - as long as it's a valid array)
Then load your view using:
Code:
$this->load->view('view', $view_vars);
If you don't need any variables in your view you can omit that parameter.
The variables are extracted, so that in your view you now have access to $test and $test2.
I would suggest you find the template function and figure out what it does differently. Apart from using a different extension.