bonjour à tous

Une petite chose me chiffonne en utilisant ZoomBox
lorsque j'utilse des lgines de ce style, je n'au aucun soucis

<a href="#" onclick="$.zoombox.html('<strong><?php echo $aircraft->fullname; ?></strong><p>This is a HTML content !</p>',{theme:'prettyphoto',width:600,height:50}); return false;"><img src="<?php echo $aircraft->imagelink;?>" width='200px' height='200px' style="border-radius: 5px;margin: 10px";></a>

par contre si pour des question du lisibilité sur l'éditeur je l'écrit avec des retour à la ligne ça plante

<a href="#" onclick="$.zoombox.html('<strong><?php echo $aircraft->fullname; ?></strong>
<p>This is a HTML content !</p>',{theme:'prettyphoto',width:600,height:50}); return false;"
><img src="<?php echo $aircraft->imagelink;?>" width='200px' height='200px' style="border-radius: 5px;margin: 10px";></a>

Pourquoi?
Il y a t'il une parade.

merci d'avance

Flo

1 réponse


Bonjour c'est visiblement ton onclick qui ne passe pas il ne doit pas tolérer les retour à la ligne entre guillemets.
essaie ça

<a href="#" 
onclick="$.zoombox.html('<strong><?php echo $aircraft->fullname; ?></strong><p>This is a HTML content </p>'{theme:'prettyphoto',width:600,height:50}); return false;"
><img src="<?php echo $aircraft->imagelink;?>" width='200px' height='200px' style="border-radius: 5px;margin: 10px";></a>