<style type="text/acss">
@pages {
"#corridor": event="#corridor:click";
"#house": event="#house:click";
}
div:click{
add-hash: "#{@id}" "{@id} - clicked" remove-last-hash;
body{
background: {@data-color};
}
}
</style>
<div data-color="red" id="corridor">Corridor</div>
<div data-color="blue" id="house">House</div>
Expected things that are happening:
Expected things that are not happening:
Can you please tell me what I'm missing here, Sir?
Thank you so much.