Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <body>
- <input type="text" placeholder="Busca algo" id="in" onclick="buscar()">
- <button id="boton" onclick="search()">Search</button>
- <script>
- function buscar() {
- var input = document.getElementById("in");
- input.innerHTML = "mary poppins";
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement