Skip to content

Instantly share code, notes, and snippets.

@tanrax
Created February 7, 2014 20:18
Show Gist options
  • Save tanrax/8870919 to your computer and use it in GitHub Desktop.
Save tanrax/8870919 to your computer and use it in GitHub Desktop.
JQuery: Plantilla (básico)
<!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