Hi,
I'm trying to use this code here: https://www.e-junkie.com/wiki/tips-sites-upsell
But the issue is that it's rendered as TEXT instead of HTML, so I can't put any links in there... Any other way to do it?
Here's a simple code so that you can test this as well:
<html>
<head>
<script type="text/javascript">function EJEJC_lc(th) { return false; };
// function EJEJC_config() {
// EJEJC_POSTCALL=true;
// }
// function EJEJC_shown() {
// jQuery(".user-text").attr("innerHTML", "<b> TEST </b>");
// }
var EJConfig = {
customLanguage: {
"user-text": "<b> TEST </b>"
}
}
</script>
<script src="https://www.fatfreecartpro.com/ecom/box_fb_n.js" type="text/javascript"></script>
</head>
<body>
<button><a href="https://www.fatfreecartpro.com/ecom/gb.php?&c=cart&ejc=2&cl=353726" onclick="return EJEJC_lc(this);"> Click me!</a></button>
</body>
</html>
HTML does not get rendered.