[FR] aide pour un template

If you made a template for printing or HTML export, you can offer it to the others here. You can also ask here for help about these templates
Post Reply
bunman
Posts: 3
Joined: 2006-06-28 15:47:56

[FR] aide pour un template

Post by bunman »

Bonjour
j'ai adaptée un des templates contenu dans Ant Movie,
fichier adapté ici :

http://bunman.free.fr/templates/asian_template.html
Or j'ai un ptit probleme, j'aimerai mettre un lien html cliquable et qui me lance une fenetre avec ce lien.
J'ai modifié le fichier de cette facon :

Code: Select all

   fenetre.document.write("<tr><td class='tdGauche'>Informations Web : </td><td class='tdDroite'>"+film.getAttribute('url')+"</td></tr>");
   fenetre.document.write("</table></body></html>");
Mais cela ne m'affiche que le lien mais ne le rend pas actif.

Si quelqu'un peut me donner un ptit coup de main
Merci beaucoup pour votre aide
antp
Site Admin
Posts: 9629
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

Salut,
Voici :

Code: Select all

 fenetre.document.write("<tr><td class='tdGauche'>Informations Web : </td><td class='tdDroite'><a href=\""+film.getAttribute('url')+"\">"+film.getAttribute('url')+"</a></td></tr>");
   fenetre.document.write("</table></body></html>");
bunman
Posts: 3
Joined: 2006-06-28 15:47:56

Post by bunman »

Merci infiniment.
tout fonctionne c'est nickel.
Quelle rapidité !!
Post Reply