Hello,
I got a simple question about the CEF. I'm trying to insert variables into the browser but I can't get it to work.
Here's my code:
var browser = mp.browsers.new("package://test/index.html");
browser.execute(`var playerName = ${mp.players.local.name;}; document.getElementById("name").innerText = playerName;`);
After this gets executed my div only says "undefined". Any ideas why?
Edit:
Stupid mistake.. I just forgot to put quotation marks around the variable like
borwser.execute(`var playerName = "${mp.players.local.name}"`);