Welcome Guest, Not a member yet? Register   Sign In
Jquery problem
#1

[eluser]Unknown[/eluser]
I got a bit of a problem with my photogallery!
my views are loaded from a template.php with this:
Code:
<?php $this->load->view('includes/header'); ?>
<?php $this->load->view($page);  ?>
<?php $this->load->view('includes/footer'); ?>

and from controller i pass the $page variable;

in my header i declared the jquery
Code:
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js'></script>
<script src='<?php echo base_url(); ?>js/jquery.flexslider-min.js'></script>
<script charset='utf-8' type='text/javascript'>
  $(window).load(function() {
    $('.flexslider').flexslider();
  });

  <script src='<?php echo base_url(); ?>js/libs/modernizr-2.5.3.min.js'></script>
in my content view i've got the div with photos but it doesn't load in gallery!

Thanks for your replyes!
#2

[eluser]weboap[/eluser]
you are trying to execute the .flexslider(); before the div is loaded....

use instead
Code:
$(document).ready(function() {
   // put all your jQuery goodness in here.
});

http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
#3

[eluser]Anonymous[/eluser]
Code:
$(window).load(function() {
executes when complete page is fully loaded, including all frames, objects and images.

You should always use document.ready tho

To help you we must have more code (HTML) to find the problem.
#4

[eluser]Unknown[/eluser]
i rewrote the code and it worked http://edengardencompany.ro/galerie/afiseaza/1
#5

[eluser]Tpojka[/eluser]
[quote author="weboap" date="1337794939"]you are trying to execute the .flexslider(); before the div is loaded....

use instead
Code:
$(document).ready(function() {
   // put all your jQuery goodness in here.
});

http://docs.jquery.com/Tutorials:Introducing_$(document).ready()[/quote]

Hi all,

I have similar problem here with jquery.cycle.all and it just solve it.
Thank you weboap so much
#6

[eluser]InsiteFX[/eluser]
You can also place all your jQuery code at the end of the document.




Theme © iAndrew 2016 - Forum software by © MyBB