TheDusty01 0 Posted October 14, 2018 (edited) 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}"`); Edited October 14, 2018 by TheDusty01 Solution Share this post Link to post Share on other sites