This file contains 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 lang="es"> | |
<head><title>Backbone</title></head> | |
<body> | |
<div id="app"> | |
<form> | |
<input name="name" placeholder="Tu Nombre"> | |
<button type="submit">Agregar</button> | |
</form> | |
<ul class="list"></ul> |
This file contains 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
/** | |
* The first commented line is your dabblet’s title | |
*/ |
This file contains 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
<input type="number" id="delay" placeholder="Seconds" size="8" /> | |
<input type="button" id="start-btn" value="iniciar" /> | |
<input type="button" id="reset-btn" value="resetear" /> | |
<span id="output">0</span> |
This file contains 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
<table width=500 cellpadding=0 cellspacing=0> | |
<thead><tr><td align=center> | |
<img src="http://www.montejocarrental.com/images/logo.gif" width="500"> | |
</td></tr></thead> | |
<thead> | |
<tr> | |
<td style="background-color:#00135f;color:#fff;font-family:verdana;padding:5px 10px" align=center> | |
DATOS GENERALES | |
</td> | |
</tr> |
This file contains 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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
This file contains 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
body{ background: #efefef; font-family: sans-serif; } | |
ul{ margin:0; padding:0; list-style:none; } | |
.nav > li{ | |
display: inline-block; | |
position: relative; | |
} | |
.nav > li > a { | |
text-decoration: none; | |
color: #222; | |
background: #fff; |
This file contains 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
/* | |
| Include this snippet before your scripts in order to get access to the pubSub pattern | |
| USAGE: | |
| $.publish('myApp:customEvent'); | |
| $.suscribe('myApp:customEvent', yourCallbackFunction); | |
**/ | |
(function( $ ) { | |
var o = $( {} ); |
NewerOlder