Skip to content

Instantly share code, notes, and snippets.

@AirStair
Created April 11, 2020 13:02
Show Gist options
  • Save AirStair/62e200c7768458ab4ef95e0407ccd190 to your computer and use it in GitHub Desktop.
Save AirStair/62e200c7768458ab4ef95e0407ccd190 to your computer and use it in GitHub Desktop.
Object.defineProperty(document.getElementById('test'), 'value', {
set: function(newValue) {
alert();
let node = document.getElementById('test').cloneNode(true);
node.value = newValue;
document.getElementById('test').parentNode.replaceChild(node, document.getElementById('test'));
},
});
document.getElementById('test').value = 'qeqw1e'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment