Last active
March 6, 2018 05:21
-
-
Save ltciro/332f66c09bea69c6c9a456edba972cfb to your computer and use it in GitHub Desktop.
JS Bin// source https://jsbin.com/hotuhof
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> | |
<!--Change Data of the view--> | |
<script id="jsbin-javascript"> | |
setTimeout(() => $('#title').html("Mundo"), 1000) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment