I can see the property grid-template-areas inside the style object:
document.getElementById("elem-id").style
i tried setting it via :
js directly
document.getElementById("elem-id").style.gridTemplateAreas = "a a b"
jquery
$("#elem-id").css({"grid-template-areas":"a b c"})
but nothing seems to work, the property remains empty.