Posts by Fabio Ribeiro • 1 point
2 posts
-
0
votes3
answers109
viewsA: Prompt in javascript does not redirect
One more detail that I find interesting to add. If I add to the page: <p id="test"> </p> And change the script to: function fnPage(){ var page = prompt("Para qual página deseja ir?"); if…
-
0
votes3
answers109
viewsQ: Prompt in javascript does not redirect
I have the following script on a page: <script> function fnPage(){ var page = prompt("Para quel página deseja ir?"); if (page != null) { location.href="http://" + page; } } </script>…