Created
February 7, 2014 20:18
-
-
Save tanrax/8870919 to your computer and use it in GitHub Desktop.
JQuery: Plantilla (básico)
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 http-equiv="X-UA-Compatible" content="IE=edge"> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> | |
</head> | |
<body> | |
<div id="miId">Lorem ipsum dolor sit amet.</div> | |
<script> | |
$(document).ready(iniciar()); | |
function iniciar() { | |
var $miId = $('#miId'); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment