Nœud ne peut pas être inséré au point spécifié dans la hiérarchie de code“: ”3

Hey, c'est encore moi avec une question à propos de jquery et que gridlayout j'ai fait un template php avec interrupteur et le code je suis l'insertion est-ce

<div id="wrapper">
<div id="grid">
<div class="box"><img src="img/an_005_BUR_thebeat.jpg" width="310px" height="438px" />3 index</div>
<div class="box"><img src="img/an_014_GUE_homme_a.jpg" width="310px" height="404px" />4 Culture</div>
<div class="box"><img src="img/an_044_BVL_springmotiv.jpg" width="310px" height="310px" />5 Pharma</div>
<div class="box"><img src="img/an_039_AN_diskette.jpg" width="310px" height="465px" />6 Pharma IT</div>
<div class="box"><img width="310px" height="100px" />7 Culture</div>
<div class="box"><img width="310px" height="120px" />8 Cosmetics</div>
<div class="box"><img width="310px" height="400px" />9 IT</div>
<div class="box"><img width="310px" height="400px" />10 Culture</div>
<div class="box"><img width="310px" height="400px" />11 IT</div>
<div class="box"><img width="310px" height="400px" />12 Culture</div>
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
$('#grid').gridLayout('.box', {col_width: 340, min_cols: 2});
//options - (values above are the defaults)
//col_width: the width of each grid block
//min_cols: the minimum number of cols on the page (reducing browser width below this will not decrease number of columns). Set to your largest block (3 = block spans 3 columns)
//gridLayout.placeAtEnd() - for placing a block at bottom right of grid
var final_block = $('');
$('#grid').gridLayout.placeAtEnd( final_block );
//gridchange event fires when window resize forces a grid refresh
$('#grid').bind( "gridchange", function(e){
console.log('gridchange event fired');
//reposition the final block
$('#grid').gridLayout.placeAtEnd( final_block );
});
//this forces a redraw of grid
$('body').gridLayout.refresh();
//returns heights of each column
console.log( 'gridLayout.info():', $('#grid').gridLayout.info() );
});
</script>

Le script jquery et le plugin sont chargés dans l'en-tête. Lorsque j'essaie d'exécuter cette. Firebug me dit:

"Nœud ne peut pas être inséré au point spécifié dans la hiérarchie de code": "3"

Faire ce que quelqu'un sait comment résoudre ce problème?

Voici un exemple que j'ai chargé de: http://18735.webhosting7.1blu.de/neu/index.php?item=lifestyle

À la ligne qui est cette erreur indiquant?
le plein de balisage pourrait l'aider. L'erreur signifie que vous (le plugin) sont d'une tentative d'insertion d'un nœud dans un invalide parent e.g un td sur une table.
ou se moquer d'un démo avec la question à jsbin.com
j'ai téléchargé le tout à mon espace web, 18735.webhosting7.1blu.de/neu/index.php?item=lifestyle
L'erreur se produit au fragment.appendChild( ret[i] ); jquery-1.3.2.js (ligne 957)

OriginalL'auteur mourique | 2009-07-13