My code for changing color on header when mouseIn
(does not work)
export function header1_mouseIn(event) {
$w("#header1").html = `<h1 style = "color:red">
${$w("#header1").text}</h1>`;
}
i get this error “property ‘text’ does not exist on type ‘header’.”
and “property ‘html’ does not exist on type ‘header’.”
Any Ideas?