<script> window.otherFn = window.alert; var scr = document.querySelector('script'); scr.textContent = scr.textContent.replace(/alert\(/g, 'otherFn('); alert(1); alert(2); alert(3); </script>