- 1
[Opened] Comment appeller j_basepath dans un fichier javascript ?
Posted by pheromix on 04/15/2016 13:04
J'ai un fichier javascript (.js). J'aimerai référencer une image dans ce fichier ; donc je dois référencer la variable Jelix j_basepath ! Par exemple :
ajoutPrevImage.attr ("src", "{$j_basepath}srcs/www/design/images/icons/arrow_left.gif");
Comment faire ?
[Opened] Comment appeller j_basepath dans un fichier javascript ?
Posted by laurentj on 04/15/2016 15:09
Bonjour,
dans ton template principal, ou via l'objet reponse et sa méthode addJSCode(), tu peux ajouter la déclaration d'une variable JS qui contiendrait la valeur de $j_basepath (qui équivaut à jApp->urlBasePath()), et utiliser cette variable dans ton fichier js.
[Opened] Comment appeller j_basepath dans un fichier javascript ?
Posted by pheromix on 04/15/2016 16:04
ce fichier javascript sera utilisé par toutes les templates contenant une liste , pour afficher les boutons de navigation "précédent" et "suivant". Donc comment faire ? Pourriez-vous donner un code snippet ?
- 1