vote up 0 vote down star

i am trying to create a fade effect with the following...ive been told im nearly there apart from the passing of the json array. At the moment no images are displayed.

 //generate all the boxes
$.get('images.php',function(data){
  for (var i=0; i < totalBoxes; i++){
      var randomImage = data[Math.floor(Math.random() * data.length)];
      $('<div class="pf-box"><img class="black" src="' + randomImage['black'] + '" /><img class="colour" src="' + randomImage['colour'] + '" /></div>').hide().appendTo('#bg').fadeIn('slow').filter('.colour').css("opacity", 0);
  }
 },'json');

 //add the hover behavior to all the elements
 $('.colour').hover(function() {
   $(this).stop().fadeTo(700, 1);
 },function() {
   $(this).stop().fadeTo(700, 0);
 });

and images.php

    <?php 
   header('Content-type: application/json');
echo '[  
    {'black' : 'images/random/1.jpg', 'colour' : 'images/random/1-c.jpg'},  
    {'black' : 'images/random/2.jpg', 'colour' : 'images/random/2-c.jpg'}
]';
    ?>
flag

3 Answers

vote up 0 vote down check

Use randomImage.black instead of randomImage['black']

link|flag
there's no difference between the two in JavaScript – Mike Haboustak Nov 6 at 1:00
there is no official support for associative arrays in JavaScript.. give those points back – Mike Gleason jr Couturier Nov 6 at 1:02
i didnt know i had removed any points sorry – Andy Nov 6 at 1:03
no problem, I forgot the "!" telling that I wasn't really mad.. :) here's a reference: hunlock.com/blogs/Mastering_Javascript_Arrays/… – Mike Gleason jr Couturier Nov 6 at 1:05
randomImage.black didnt break anything but didnt create the hover either... – Andy Nov 6 at 1:05
show 17 more comments
vote up 2 vote down

Don't you need to escape the quotes inside the JSON string? Otherwise the php interpreter will fail to send all of what you want, and may even barf out some errors.

link|flag
I am trying to create this effect: yellostudio.co.uk/temp/index.php with the code above on yellostudio.co.uk/temp/indexV2.php Do you know where i am going wrong? – Andy Nov 6 at 1:00
vote up 0 vote down

Your echo is failing because of the single quotes in the JSON output breaking out of the echo.

Enclose your string with different quotes so you can echo properly:

<?php
header('Content-type: application/json'); 
echo "[
    {'black' : 'images/random/1.jpg', 'colour' : 'images/random/1-c.jpg'},
    {'black' : 'images/random/2.jpg', 'colour' : 'images/random/2-c.jpg'} 
]"; 
?>

Note the use of double quotes to enclose the echo string, instead of the single quotes you've used. (if you had double quotes inside the string, then you'd reverse it and use single on the outside).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.