Hi. I need form in my phaser game, but all example dont work.
Its happen because DOM container has css property ‘pointer-events: none’, but i cant simply remove it, becose then not work events in phaser.
samme
2
You can add style="pointer-events: auto"
to the HTML fragment. Or
domElement.node.style.pointerEvents = 'auto';
Thank you. I find this solution too, when read this changelog.
This is 8 march update.