Created
March 6, 2018 05:17
-
-
Save ltciro/451284e291dcded2b4adc7953d7a39b4 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/pihujupito
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script src="https://code.jquery.com/jquery-3.1.0.js"></script> | |
<h1 id="title">Hola</h1> | |
<script id="jsbin-javascript"> | |
setTimeout(() => $('#title').html("Mundo"), 1000) | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">setTimeout(() => $('#title').html("Mundo"), 1000)</script></body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setTimeout(() => $('#title').html("Mundo"), 1000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment