Thelastkiss 0 Posted November 8, 2017 Hello Me call Html : menu = mp.browsers.new('package://realliferpg/index.html'); I want to chang text in html Element By Client side script Can it be done? Do not you have another way? Thank you Sory My Bad Eng Share this post Link to post Share on other sites
kostya_nad 11 Posted November 9, 2017 Yes. HTML page: <!DOCTYPE html> <html> <head> <meta name="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <div id="editdiv">Some word & example</div> </body> </html> JS: let menu = mp.browsers.new('package://realliferpg/index.html'); // start of CEF (HTML) menu.execute(`document.getElementById('editdiv').innerHTML="Hello!"`); After this executing this script with this HTML in block with id="editdiv" text will be this: Hello! menu.execute is executing methods in CEF 2 Share this post Link to post Share on other sites