vote up 0 vote down star

Hi, I'm doing a little experiment trying to randomly place images inside a div using a javascript loop. I've been having some trouble with it.

Here's what I have (simplified):

for(var i = 0; i < 10; i++)
{
var top = random(-20, 20);
var left = random(-20, 20);

document.write(
  <div class="one" style="\"left:" + left + ";\"">
    <img src="hein.png"/>
  </div>
);
}

The goal being to generate some top and left values, and every itteration display a new image with these generated values. I know it's a syntax error with the style="". But nothing I've tried has worked

How can I get this working.

flag

5 Answers

vote up 0 vote down check

You have forgotten to quote the string in the document.write call. Also you forgot the unit on the measurement.

for(var i = 0; i < 10; i++) {
   var top = random(-20, 20);
   var left = random(-20, 20);

   document.write(
      '<div class="one" style="left:' + left + 'px;top:' + top + 'px">' +
         '<img src="hein.png"/>' +
      '</div>'
   );
}
link|flag
Wow that was fast, and elegant, no escape characters! Excellent it works, now i know a little more about .write – febs Jul 29 at 19:45
Using document.write isn't really a good practice. – Christian Toma Jul 29 at 19:47
Posted an alternative in PHP. Thanks for the help. – febs Jul 29 at 21:35
vote up 1 vote down

You meed to wrap the whole of the document.write output in quotes, like this:

document.write('<div class="one" style="left:"' + left + ';"><img src="hein.png"/></div>');
link|flag
vote up 1 vote down

You should first consider using a JavaScript library like jQuery. This will simplify your work.

Let's say you have this markup

<div id="image-container">

</div>

Include jQuery in you markup

<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js"></script>

From JavaScript you would do this, after you've included jQuery in your markup

for(var i = 0; i < 10; i++) {
    var top = random(-20, 20);
    var left = random(-20, 20);

    $('#image-container').append('<img src="hein.png" style="position: absolute; top: '+top+'; left : '+left +';" />');
}
link|flag
That however works completely different, as you have to do that after the page has loaded, not while the page is loading as with document.write. – Guffa Jul 29 at 19:41
It's not really a good practice to do document.write – Christian Toma Jul 29 at 19:43
vote up 0 vote down

You forgot the quotes in document.write and you are escaping wrong characters inside of it

document.write(
  "<div class=\"one\" style=\"left:" + left + ";\">
    <img src=\"hein.png\"/>
  </div>"
);
link|flag
vote up 0 vote down

Using PHP Instead:

<?php
// Middle coords of my div
    $top = 200;
    $left = 350;

    for($i = 0; $i < 20; $i += 1)
    {
    	$tran = rand(-130,170);
    	$lran = rand(-300,270);
        // Fix line breaks 
    	$top = $top - 49;
    	echo '<div style="position:relative;
    			  display: block;
    			  height: 49px;
    			  width:49px;
    			  left:' . ($left + $lran) . 'px;
    			  top:' . ($top + $tran) . 'px;
    	       ">' . '<img src="img.png"/>' . '</div>';
    }

?>

Awesome! Thanks for the help with the string syntax!

link|flag

Your Answer

Get an OpenID
or
never shown

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