how to add meta property from js script code example
Example: how to use a script to inject a meta attribute in html
document.addEventListener('requireready', function onRequireReady() {
require(['jquery'], function run($) {
$(document).ready(function () {
$(".className").closest("element").attr("tag", "value");
});
});
});