I'm testing a webpage, and I want to execute some JavaScript code from the address bar to change some content (e.g. changing the content of a div) I loaded the webpage and typed in the address bar the following:
javascript:document.getElementById("message").innerHTML="anotherthing"
And, after executing the above code, the browser changes the content of the div, but inmediatly it exits the page.
How can I avoid that behavior?
Thank you.
Add a void(0); to the end and it will fix it.
When you copy and paste the javascript:
label into some browsers URL bars it automatically removes it. This is a security measure following certain attacks which have occurred in the past whereby people were asked to copy exploitative JavaScript into their URL bars in order for attackers to steal data.
If you want to execute JavaScript like this, you may find that you need to manually type out the javascript:
part, otherwise your browser will assume that you're wanting to instead search for document.getElementById(...)...
.
Copy the following into your address bar:
javascript:alert('hi');
For me, in Chrome on Windows, the javascript:
part is removed and instead it assumes I want to search for alert('hi')
:
Depending on what you're trying to achieve, you'd probably be better off executing JavaScript through your browser's JavaScript console. If you're unsure how to do that, check this out: How to open the JavaScript console in different browsers?
One more solution:
javascript: (function(){ /* Your Javascript code goes here */ })();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With