Loop and Return HTML in Javascript (Template Literals)











up vote
-1
down vote

favorite












I'm creating a chat module. Everything's done but I use a too modern code for IE10/IE11 and I need this compatibility ...



I changed a lot of things but I'm stuck with something easy for you guyz I'm sure.



I need to go back from a template literal to an old way. Any Help ? Here's my function I need to change : data is a simple Array with Objects in it : data = [{},{},{}]



function createChatBox(data) {
return ` <div class="vchat__options">
${data.map((info, index) =>
`${info.action === 'site' ? `<a href="${info.url}" target="_blank" id="vchat__${index}" class="vchat__box">
<div class="vchat__block">
${info.svg}
<p class="vchat__text"><strong class="vchat__headline">${info.headline}</strong>${info.text}</p>
<span class="vchat__highlight">${info.highlight}${info.highlight_icono}</span>
</div>
</a>` : `<div id="vchat__${info.id}" class="vchat__box ${info.action === 'next' ? 'js-vchatPanel' : 'js-vchatZopim'}">
<div class="vchat__block">
${info.svg}
<p class="vchat__text"><strong class="vchat__headline">${info.headline}</strong>${info.text}</p>
<span class="vchat__highlight">${info.highlight}${info.highlight_icono}</span>
</div>
</div>`}`
).join('')}
</div>`;
}


I don't need the full code. Just any tips, advices will be cool !
Thank you










share|improve this question






















  • Hi @Clement, can you elaborate on what is the problem you are facing? That will help the community to get back to you with an appropriate answer. :-)
    – theapologist
    Nov 22 at 11:01










  • Hi! Please take the tour (you get a badge!), have a look around, and read through the help center, in particular How do I ask a good question? I also recommend Jon Skeet's Writing the Perfect Question and Question Checklist. This is far too broad for SO's Q&A format. Just use any of several templating libraries.
    – T.J. Crowder
    Nov 22 at 11:02










  • @LloydFrancis my issue is that the "template literal" is not OK with IE10/IE11 and I have nothing yet to make it compatible (Babel, ...)
    – Clément CREUSAT
    Nov 22 at 12:46















up vote
-1
down vote

favorite












I'm creating a chat module. Everything's done but I use a too modern code for IE10/IE11 and I need this compatibility ...



I changed a lot of things but I'm stuck with something easy for you guyz I'm sure.



I need to go back from a template literal to an old way. Any Help ? Here's my function I need to change : data is a simple Array with Objects in it : data = [{},{},{}]



function createChatBox(data) {
return ` <div class="vchat__options">
${data.map((info, index) =>
`${info.action === 'site' ? `<a href="${info.url}" target="_blank" id="vchat__${index}" class="vchat__box">
<div class="vchat__block">
${info.svg}
<p class="vchat__text"><strong class="vchat__headline">${info.headline}</strong>${info.text}</p>
<span class="vchat__highlight">${info.highlight}${info.highlight_icono}</span>
</div>
</a>` : `<div id="vchat__${info.id}" class="vchat__box ${info.action === 'next' ? 'js-vchatPanel' : 'js-vchatZopim'}">
<div class="vchat__block">
${info.svg}
<p class="vchat__text"><strong class="vchat__headline">${info.headline}</strong>${info.text}</p>
<span class="vchat__highlight">${info.highlight}${info.highlight_icono}</span>
</div>
</div>`}`
).join('')}
</div>`;
}


I don't need the full code. Just any tips, advices will be cool !
Thank you










share|improve this question






















  • Hi @Clement, can you elaborate on what is the problem you are facing? That will help the community to get back to you with an appropriate answer. :-)
    – theapologist
    Nov 22 at 11:01










  • Hi! Please take the tour (you get a badge!), have a look around, and read through the help center, in particular How do I ask a good question? I also recommend Jon Skeet's Writing the Perfect Question and Question Checklist. This is far too broad for SO's Q&A format. Just use any of several templating libraries.
    – T.J. Crowder
    Nov 22 at 11:02










  • @LloydFrancis my issue is that the "template literal" is not OK with IE10/IE11 and I have nothing yet to make it compatible (Babel, ...)
    – Clément CREUSAT
    Nov 22 at 12:46













up vote
-1
down vote

favorite









up vote
-1
down vote

favorite











I'm creating a chat module. Everything's done but I use a too modern code for IE10/IE11 and I need this compatibility ...



I changed a lot of things but I'm stuck with something easy for you guyz I'm sure.



I need to go back from a template literal to an old way. Any Help ? Here's my function I need to change : data is a simple Array with Objects in it : data = [{},{},{}]



function createChatBox(data) {
return ` <div class="vchat__options">
${data.map((info, index) =>
`${info.action === 'site' ? `<a href="${info.url}" target="_blank" id="vchat__${index}" class="vchat__box">
<div class="vchat__block">
${info.svg}
<p class="vchat__text"><strong class="vchat__headline">${info.headline}</strong>${info.text}</p>
<span class="vchat__highlight">${info.highlight}${info.highlight_icono}</span>
</div>
</a>` : `<div id="vchat__${info.id}" class="vchat__box ${info.action === 'next' ? 'js-vchatPanel' : 'js-vchatZopim'}">
<div class="vchat__block">
${info.svg}
<p class="vchat__text"><strong class="vchat__headline">${info.headline}</strong>${info.text}</p>
<span class="vchat__highlight">${info.highlight}${info.highlight_icono}</span>
</div>
</div>`}`
).join('')}
</div>`;
}


I don't need the full code. Just any tips, advices will be cool !
Thank you










share|improve this question













I'm creating a chat module. Everything's done but I use a too modern code for IE10/IE11 and I need this compatibility ...



I changed a lot of things but I'm stuck with something easy for you guyz I'm sure.



I need to go back from a template literal to an old way. Any Help ? Here's my function I need to change : data is a simple Array with Objects in it : data = [{},{},{}]



function createChatBox(data) {
return ` <div class="vchat__options">
${data.map((info, index) =>
`${info.action === 'site' ? `<a href="${info.url}" target="_blank" id="vchat__${index}" class="vchat__box">
<div class="vchat__block">
${info.svg}
<p class="vchat__text"><strong class="vchat__headline">${info.headline}</strong>${info.text}</p>
<span class="vchat__highlight">${info.highlight}${info.highlight_icono}</span>
</div>
</a>` : `<div id="vchat__${info.id}" class="vchat__box ${info.action === 'next' ? 'js-vchatPanel' : 'js-vchatZopim'}">
<div class="vchat__block">
${info.svg}
<p class="vchat__text"><strong class="vchat__headline">${info.headline}</strong>${info.text}</p>
<span class="vchat__highlight">${info.highlight}${info.highlight_icono}</span>
</div>
</div>`}`
).join('')}
</div>`;
}


I don't need the full code. Just any tips, advices will be cool !
Thank you







javascript html arrays object






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 22 at 10:58









Clément CREUSAT

615




615












  • Hi @Clement, can you elaborate on what is the problem you are facing? That will help the community to get back to you with an appropriate answer. :-)
    – theapologist
    Nov 22 at 11:01










  • Hi! Please take the tour (you get a badge!), have a look around, and read through the help center, in particular How do I ask a good question? I also recommend Jon Skeet's Writing the Perfect Question and Question Checklist. This is far too broad for SO's Q&A format. Just use any of several templating libraries.
    – T.J. Crowder
    Nov 22 at 11:02










  • @LloydFrancis my issue is that the "template literal" is not OK with IE10/IE11 and I have nothing yet to make it compatible (Babel, ...)
    – Clément CREUSAT
    Nov 22 at 12:46


















  • Hi @Clement, can you elaborate on what is the problem you are facing? That will help the community to get back to you with an appropriate answer. :-)
    – theapologist
    Nov 22 at 11:01










  • Hi! Please take the tour (you get a badge!), have a look around, and read through the help center, in particular How do I ask a good question? I also recommend Jon Skeet's Writing the Perfect Question and Question Checklist. This is far too broad for SO's Q&A format. Just use any of several templating libraries.
    – T.J. Crowder
    Nov 22 at 11:02










  • @LloydFrancis my issue is that the "template literal" is not OK with IE10/IE11 and I have nothing yet to make it compatible (Babel, ...)
    – Clément CREUSAT
    Nov 22 at 12:46
















Hi @Clement, can you elaborate on what is the problem you are facing? That will help the community to get back to you with an appropriate answer. :-)
– theapologist
Nov 22 at 11:01




Hi @Clement, can you elaborate on what is the problem you are facing? That will help the community to get back to you with an appropriate answer. :-)
– theapologist
Nov 22 at 11:01












Hi! Please take the tour (you get a badge!), have a look around, and read through the help center, in particular How do I ask a good question? I also recommend Jon Skeet's Writing the Perfect Question and Question Checklist. This is far too broad for SO's Q&A format. Just use any of several templating libraries.
– T.J. Crowder
Nov 22 at 11:02




Hi! Please take the tour (you get a badge!), have a look around, and read through the help center, in particular How do I ask a good question? I also recommend Jon Skeet's Writing the Perfect Question and Question Checklist. This is far too broad for SO's Q&A format. Just use any of several templating libraries.
– T.J. Crowder
Nov 22 at 11:02












@LloydFrancis my issue is that the "template literal" is not OK with IE10/IE11 and I have nothing yet to make it compatible (Babel, ...)
– Clément CREUSAT
Nov 22 at 12:46




@LloydFrancis my issue is that the "template literal" is not OK with IE10/IE11 and I have nothing yet to make it compatible (Babel, ...)
– Clément CREUSAT
Nov 22 at 12:46












1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










Checkout webpack and Babel to transpile new ES6 JavaScript syntax to be compatible with older browsers. Once setup, you can specify which browser versions etc. you need to support.



Put your code example into the online Babel compiler to view results.






share|improve this answer





















  • Thank you ! I will check this right now
    – Clément CREUSAT
    Nov 22 at 12:46










  • Exactly what I needed to see my code in this old fashion way !! Don't know why I didn't think about that. Thank you !
    – Clément CREUSAT
    Nov 22 at 12:54











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53429443%2floop-and-return-html-in-javascript-template-literals%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote



accepted










Checkout webpack and Babel to transpile new ES6 JavaScript syntax to be compatible with older browsers. Once setup, you can specify which browser versions etc. you need to support.



Put your code example into the online Babel compiler to view results.






share|improve this answer





















  • Thank you ! I will check this right now
    – Clément CREUSAT
    Nov 22 at 12:46










  • Exactly what I needed to see my code in this old fashion way !! Don't know why I didn't think about that. Thank you !
    – Clément CREUSAT
    Nov 22 at 12:54















up vote
1
down vote



accepted










Checkout webpack and Babel to transpile new ES6 JavaScript syntax to be compatible with older browsers. Once setup, you can specify which browser versions etc. you need to support.



Put your code example into the online Babel compiler to view results.






share|improve this answer





















  • Thank you ! I will check this right now
    – Clément CREUSAT
    Nov 22 at 12:46










  • Exactly what I needed to see my code in this old fashion way !! Don't know why I didn't think about that. Thank you !
    – Clément CREUSAT
    Nov 22 at 12:54













up vote
1
down vote



accepted







up vote
1
down vote



accepted






Checkout webpack and Babel to transpile new ES6 JavaScript syntax to be compatible with older browsers. Once setup, you can specify which browser versions etc. you need to support.



Put your code example into the online Babel compiler to view results.






share|improve this answer












Checkout webpack and Babel to transpile new ES6 JavaScript syntax to be compatible with older browsers. Once setup, you can specify which browser versions etc. you need to support.



Put your code example into the online Babel compiler to view results.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 22 at 11:10









Gary Thomas

1,0301312




1,0301312












  • Thank you ! I will check this right now
    – Clément CREUSAT
    Nov 22 at 12:46










  • Exactly what I needed to see my code in this old fashion way !! Don't know why I didn't think about that. Thank you !
    – Clément CREUSAT
    Nov 22 at 12:54


















  • Thank you ! I will check this right now
    – Clément CREUSAT
    Nov 22 at 12:46










  • Exactly what I needed to see my code in this old fashion way !! Don't know why I didn't think about that. Thank you !
    – Clément CREUSAT
    Nov 22 at 12:54
















Thank you ! I will check this right now
– Clément CREUSAT
Nov 22 at 12:46




Thank you ! I will check this right now
– Clément CREUSAT
Nov 22 at 12:46












Exactly what I needed to see my code in this old fashion way !! Don't know why I didn't think about that. Thank you !
– Clément CREUSAT
Nov 22 at 12:54




Exactly what I needed to see my code in this old fashion way !! Don't know why I didn't think about that. Thank you !
– Clément CREUSAT
Nov 22 at 12:54


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53429443%2floop-and-return-html-in-javascript-template-literals%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Trompette piccolo

Slow SSRS Report in dynamic grouping and multiple parameters

Simon Yates (cyclisme)