-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
/
index.html
5468 lines (4831 loc) · 223 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="viewport" content="width=device-width">
<link rel="canonical" href="http://backbonejs.org" />
<title>Backbone.js</title>
<style>
body {
font-size: 14px;
line-height: 22px;
font-family: Helvetica Neue, Helvetica, Arial;
background: #f4f4f4 url(docs/images/background.png);
}
.interface {
font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, sans-serif !important;
}
div#sidebar {
background: #fff;
position: fixed;
z-index: 10;
top: 0; left: 0; bottom: 0;
width: 200px;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
padding: 15px 0 30px 30px;
border-right: 1px solid #bbb;
box-shadow: 0 0 20px #ccc; -webkit-box-shadow: 0 0 20px #ccc; -moz-box-shadow: 0 0 20px #ccc;
}
a.toc_title, a.toc_title:visited {
display: block;
color: black;
font-weight: bold;
margin-top: 15px;
}
a.toc_title:hover {
text-decoration: underline;
}
#sidebar .version {
font-size: 10px;
font-weight: normal;
}
ul.toc_section {
font-size: 11px;
line-height: 14px;
margin: 5px 0 0 0;
padding-left: 0px;
list-style-type: none;
font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, sans-serif;
}
.toc_section li {
cursor: pointer;
margin: 0 0 3px 0;
}
.toc_section li a {
text-decoration: none;
color: black;
}
.toc_section li a:hover {
text-decoration: underline;
}
input#function_filter {
width: 80%;
}
div.container {
position: relative;
width: 550px;
margin: 40px 0 50px 260px;
}
img#logo {
width: 450px;
height: 80px;
}
div.run {
position: absolute;
right: 15px;
width: 26px; height: 18px;
background: url('docs/images/arrows.png') no-repeat -26px 0;
}
div.run:active {
background-position: -51px 0;
}
p, div.container ul {
margin: 25px 0;
width: 550px;
}
p.warning {
font-size: 12px;
line-height: 18px;
font-style: italic;
}
div.container ul {
list-style: circle;
padding-left: 15px;
font-size: 13px;
line-height: 18px;
}
div.container ul li {
margin-bottom: 10px;
}
div.container ul.small {
font-size: 12px;
}
a, a:visited {
color: #444;
}
a:active, a:hover {
color: #000;
}
a.punch {
display: inline-block;
background: #4162a8;
border-top: 1px solid #38538c;
border-right: 1px solid #1f2d4d;
border-bottom: 1px solid #151e33;
border-left: 1px solid #1f2d4d;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 10px 1px #5c8bee, 0px 1px 0 #1d2c4d, 0 6px 0px #1f3053, 0 8px 4px 1px #111111;
-moz-box-shadow: inset 0 1px 10px 1px #5c8bee, 0px 1px 0 #1d2c4d, 0 6px 0px #1f3053, 0 8px 4px 1px #111111;
-ms-box-shadow: inset 0 1px 10px 1px #5c8bee, 0px 1px 0 #1d2c4d, 0 6px 0px #1f3053, 0 8px 4px 1px #111111;
-o-box-shadow: inset 0 1px 10px 1px #5c8bee, 0px 1px 0 #1d2c4d, 0 6px 0px #1f3053, 0 8px 4px 1px #111111;
box-shadow: inset 0 1px 10px 1px #5c8bee, 0px 1px 0 #1d2c4d, 0 6px 0px #1f3053, 0 8px 4px 1px #111111;
color: #fff;
font: bold 14px "helvetica neue", helvetica, arial, sans-serif;
line-height: 1;
margin-bottom: 15px;
padding: 8px 0 10px 0;
text-align: center;
text-shadow: 0px -1px 1px #1e2d4d;
text-decoration: none;
width: 225px;
-webkit-background-clip: padding-box; }
a.punch:hover {
-webkit-box-shadow: inset 0 0px 20px 1px #87adff, 0px 1px 0 #1d2c4d, 0 6px 0px #1f3053, 0 8px 4px 1px #111111;
-moz-box-shadow: inset 0 0px 20px 1px #87adff, 0px 1px 0 #1d2c4d, 0 6px 0px #1f3053, 0 8px 4px 1px #111111;
-ms-box-shadow: inset 0 0px 20px 1px #87adff, 0px 1px 0 #1d2c4d, 0 6px 0px #1f3053, 0 8px 4px 1px #111111;
-o-box-shadow: inset 0 0px 20px 1px #87adff, 0px 1px 0 #1d2c4d, 0 6px 0px #1f3053, 0 8px 4px 1px #111111;
box-shadow: inset 0 0px 20px 1px #87adff, 0px 1px 0 #1d2c4d, 0 6px 0px #1f3053, 0 8px 4px 1px #111111;
cursor: pointer; }
a.punch:active {
-webkit-box-shadow: inset 0 1px 10px 1px #5c8bee, 0 1px 0 #1d2c4d, 0 2px 0 #1f3053, 0 4px 3px 0 #111111;
-moz-box-shadow: inset 0 1px 10px 1px #5c8bee, 0 1px 0 #1d2c4d, 0 2px 0 #1f3053, 0 4px 3px 0 #111111;
-ms-box-shadow: inset 0 1px 10px 1px #5c8bee, 0 1px 0 #1d2c4d, 0 2px 0 #1f3053, 0 4px 3px 0 #111111;
-o-box-shadow: inset 0 1px 10px 1px #5c8bee, 0 1px 0 #1d2c4d, 0 2px 0 #1f3053, 0 4px 3px 0 #111111;
box-shadow: inset 0 1px 10px 1px #5c8bee, 0 1px 0 #1d2c4d, 0 2px 0 #1f3053, 0 4px 3px 0 #111111;
margin-top: 5px; margin-bottom: 10px; }
a img {
border: 0;
}
h1, h2, h3, h4, h5, h6 {
padding-top: 20px;
}
h2 {
font-size: 22px;
}
b.header {
font-size: 18px;
line-height: 35px;
}
span.alias {
font-size: 14px;
font-style: italic;
margin-left: 20px;
}
table {
margin: 15px 0 0; padding: 0;
}
tr, td {
margin: 0; padding: 0;
}
td {
padding: 0px 15px 5px 0;
}
table .rule {
height: 1px;
background: #ccc;
margin: 5px 0;
}
code, pre, tt {
font-family: Monaco, Consolas, "Lucida Console", monospace;
font-size: 12px;
line-height: 18px;
font-style: normal;
}
tt {
padding: 0px 3px;
background: #fff;
border: 1px solid #ddd;
zoom: 1;
}
code {
margin-left: 20px;
}
pre {
font-size: 12px;
padding: 2px 0 2px 15px;
border: 4px solid #bbb; border-top: 0; border-bottom: 0;
margin: 0px 0 25px;
}
img.example_image {
margin: 0px auto;
}
img.example_retina {
margin: 20px;
box-shadow: 0 8px 15px rgba(0,0,0,0.4);
}
@media only screen and (-webkit-max-device-pixel-ratio: 1) and (max-width: 600px),
only screen and (max--moz-device-pixel-ratio: 1) and (max-width: 600px) {
div#sidebar {
display: none;
}
img#logo {
max-width: 450px;
width: 100%;
height: auto;
}
div.container {
width: auto;
margin-left: 15px;
margin-right: 15px;
}
p, div.container ul {
width: auto;
}
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-width: 640px),
only screen and (-o-min-device-pixel-ratio: 3/2) and (max-width: 640px),
only screen and (min-device-pixel-ratio: 1.5) and (max-width: 640px) {
img {
max-width: 100%;
height: auto;
}
div#sidebar {
-webkit-overflow-scrolling: initial;
position: relative;
width: 90%;
height: 120px;
left: 0;
top: -7px;
padding: 10px 0 10px 30px;
border: 0;
}
img#logo {
width: auto;
height: auto;
}
div.container {
margin: 0;
width: 100%;
}
p, div.container ul {
max-width: 98%;
overflow-x: scroll;
}
table {
position: relative;
}
tr:first-child td {
padding-bottom: 25px;
}
td.text {
line-height: 12px;
padding: 0;
position: absolute;
left: 0;
top: 48px;
}
tr:last-child td.text {
top: 122px;
}
pre {
overflow: scroll;
}
}
img.figure {
width: 100%;
}
div.columns {
display: table;
table-layout: fixed;
width: 100%;
}
div.columns ul {
margin: 10px 0;
}
div.col-50 {
display: table-cell;
width: 50%;
}
</style>
</head>
<body>
<div id="sidebar" class="interface">
<a class="toc_title" href="#">
Backbone.js <span class="version">(1.6.0)</span>
</a>
<ul class="toc_section">
<li>» <a href="http://github.com/jashkenas/backbone">GitHub Repository</a></li>
<li>» <a href="docs/backbone.html">Annotated Source</a></li>
</ul>
<input id="function_filter" placeholder="Filter" type="text" autofocus />
<div class="searchable_section">
<a class="toc_title" href="#Getting-started">
Getting Started
</a>
<ul class="toc_section">
<li data-name="Introduction">- <a href="#Getting-started">Introduction</a></li>
<li data-name="Models and Views">– <a href="#Model-View-separation">Models and Views</a></li>
<li data-name="Collections">– <a href="#Model-Collections">Collections</a></li>
<li data-name="API Integration">– <a href="#API-integration">API Integration</a></li>
<li data-name="Rendering">– <a href="#View-rendering">Rendering</a></li>
<li data-name="Routing">– <a href="#Routing">Routing</a></li>
</ul>
</div>
<div class="searchable_section">
<a class="toc_title" href="#Events">
Events
</a>
<ul class="toc_section">
<li data-name="on">– <a href="#Events-on">on</a></li>
<li data-name="off">– <a href="#Events-off">off</a></li>
<li data-name="trigger">– <a href="#Events-trigger">trigger</a></li>
<li data-name="once">– <a href="#Events-once">once</a></li>
<li data-name="listenTo">– <a href="#Events-listenTo">listenTo</a></li>
<li data-name="stopListening">– <a href="#Events-stopListening">stopListening</a></li>
<li data-name="listenToOnce">– <a href="#Events-listenToOnce">listenToOnce</a></li>
<li data-name="Catalog of Built-in Events">- <a href="#Events-catalog"><b>Catalog of Built-in Events</b></a></li>
</ul>
</div>
<div class="searchable_section">
<a class="toc_title" href="#Model">
Model
</a>
<ul class="toc_section">
<li data-name="extend">– <a href="#Model-extend">extend</a></li>
<li data-name="preinitialize">– <a href="#Model-preinitialize">preinitialize</a></li>
<li data-name="constructor / initialize">– <a href="#Model-constructor">constructor / initialize</a></li>
<li data-name="get">– <a href="#Model-get">get</a></li>
<li data-name="set">– <a href="#Model-set">set</a></li>
<li data-name="escape">– <a href="#Model-escape">escape</a></li>
<li data-name="has">– <a href="#Model-has">has</a></li>
<li data-name="unset">– <a href="#Model-unset">unset</a></li>
<li data-name="clear">– <a href="#Model-clear">clear</a></li>
<li data-name="id">– <a href="#Model-id">id</a></li>
<li data-name="idAttribute">– <a href="#Model-idAttribute">idAttribute</a></li>
<li data-name="cid">– <a href="#Model-cid">cid</a></li>
<li data-name="cidPrefix">– <a href="#Model-cidPrefix">cidPrefix</a></li>
<li data-name="attributes">– <a href="#Model-attributes">attributes</a></li>
<li data-name="changed">– <a href="#Model-changed">changed</a></li>
<li data-name="defaults">– <a href="#Model-defaults">defaults</a></li>
<li data-name="toJSON">– <a href="#Model-toJSON">toJSON</a></li>
<li data-name="sync">– <a href="#Model-sync">sync</a></li>
<li data-name="fetch">– <a href="#Model-fetch">fetch</a></li>
<li data-name="save">– <a href="#Model-save">save</a></li>
<li data-name="destroy">– <a href="#Model-destroy">destroy</a></li>
<li data-name="Underscore Methods">– <a href="#Model-Underscore-Methods"><b>Underscore Methods (9)</b></a></li>
<li data-name="validate">– <a href="#Model-validate">validate</a></li>
<li data-name="validationError">– <a href="#Model-validationError">validationError</a></li>
<li data-name="isValid">– <a href="#Model-isValid">isValid</a></li>
<li data-name="url">– <a href="#Model-url">url</a></li>
<li data-name="urlRoot">– <a href="#Model-urlRoot">urlRoot</a></li>
<li data-name="parse">– <a href="#Model-parse">parse</a></li>
<li data-name="clone">– <a href="#Model-clone">clone</a></li>
<li data-name="isNew">– <a href="#Model-isNew">isNew</a></li>
<li data-name="hasChanged">– <a href="#Model-hasChanged">hasChanged</a></li>
<li data-name="changedAttributes">– <a href="#Model-changedAttributes">changedAttributes</a></li>
<li data-name="previous">– <a href="#Model-previous">previous</a></li>
<li data-name="previousAttributes">– <a href="#Model-previousAttributes">previousAttributes</a></li>
</ul>
</div>
<div class="searchable_section">
<a class="toc_title" href="#Collection">
Collection
</a>
<ul class="toc_section">
<li data-name="extend">– <a href="#Collection-extend">extend</a></li>
<li data-name="model">– <a href="#Collection-model">model</a></li>
<li data-name="modelId">– <a href="#Collection-modelId">modelId</a></li>
<li data-name="preinitialize" data-name="preinitialize">– <a href="#Collection-preinitialize">preinitialize</a></li>
<li data-name="constructor / initialize" data-name="constructor / initialize">– <a href="#Collection-constructor">constructor / initialize</a></li>
<li data-name="models">– <a href="#Collection-models">models</a></li>
<li data-name="toJSON">– <a href="#Collection-toJSON">toJSON</a></li>
<li data-name="sync">– <a href="#Collection-sync">sync</a></li>
<li data-name="Underscore Methods">– <a href="#Collection-Underscore-Methods"><b>Underscore Methods (46)</b></a></li>
<li data-name="add">– <a href="#Collection-add">add</a></li>
<li data-name="remove">– <a href="#Collection-remove">remove</a></li>
<li data-name="reset">– <a href="#Collection-reset">reset</a></li>
<li data-name="set">– <a href="#Collection-set">set</a></li>
<li data-name="get">– <a href="#Collection-get">get</a></li>
<li data-name="at">– <a href="#Collection-at">at</a></li>
<li data-name="push">– <a href="#Collection-push">push</a></li>
<li data-name="pop">– <a href="#Collection-pop">pop</a></li>
<li data-name="unshift">– <a href="#Collection-unshift">unshift</a></li>
<li data-name="shift">– <a href="#Collection-shift">shift</a></li>
<li data-name="slice">– <a href="#Collection-slice">slice</a></li>
<li data-name="length">– <a href="#Collection-length">length</a></li>
<li data-name="comparator">– <a href="#Collection-comparator">comparator</a></li>
<li data-name="sort">– <a href="#Collection-sort">sort</a></li>
<li data-name="pluck">– <a href="#Collection-pluck">pluck</a></li>
<li data-name="where">– <a href="#Collection-where">where</a></li>
<li data-name="findWhere">– <a href="#Collection-findWhere">findWhere</a></li>
<li data-name="url">– <a href="#Collection-url">url</a></li>
<li data-name="parse">– <a href="#Collection-parse">parse</a></li>
<li data-name="clone">– <a href="#Collection-clone">clone</a></li>
<li data-name="fetch">– <a href="#Collection-fetch">fetch</a></li>
<li data-name="create">– <a href="#Collection-create">create</a></li>
<li data-name="sync">– <a href="#Collection-mixin">mixin</a></li>
</ul>
</div>
<div class="searchable_section">
<a class="toc_title" href="#Router">
Router
</a>
<ul class="toc_section">
<li data-name="extend">– <a href="#Router-extend">extend</a></li>
<li data-name="routes">– <a href="#Router-routes">routes</a></li>
<li data-name="preinitialize">– <a href="#Router-preinitialize">preinitialize</a></li>
<li data-name="constructor / initialize">– <a href="#Router-constructor">constructor / initialize</a></li>
<li data-name="route">– <a href="#Router-route">route</a></li>
<li data-name="navigate">– <a href="#Router-navigate">navigate</a></li>
<li data-name="execute">– <a href="#Router-execute">execute</a></li>
</ul>
</div>
<div class="searchable_section">
<a class="toc_title" href="#History">
History
</a>
<ul class="toc_section">
<li data-name="start">– <a href="#History-start">start</a></li>
</ul>
</div>
<div class="searchable_section">
<a class="toc_title" href="#Sync">
Sync
</a>
<ul class="toc_section">
<li data-name="Backbone.sync">– <a href="#Sync">Backbone.sync</a></li>
<li data-name="Backbone.ajax">– <a href="#Sync-ajax">Backbone.ajax</a></li>
<li data-name="Backbone.emulateHTTP">– <a href="#Sync-emulateHTTP">Backbone.emulateHTTP</a></li>
<li data-name="Backbone.emulateJSON">– <a href="#Sync-emulateJSON">Backbone.emulateJSON</a></li>
</ul>
</div>
<div class="searchable_section">
<a class="toc_title" href="#View">
View
</a>
<ul class="toc_section">
<li data-name="extend">– <a href="#View-extend">extend</a></li>
<li data-name="preinitialize">– <a href="#View-preinitialize">preinitialize</a></li>
<li data-name="constructor / initialize">– <a href="#View-constructor">constructor / initialize</a></li>
<li data-name="el">– <a href="#View-el">el</a></li>
<li data-name="$el">– <a href="#View-$el">$el</a></li>
<li data-name="setElement">– <a href="#View-setElement">setElement</a></li>
<li data-name="attributes">– <a href="#View-attributes">attributes</a></li>
<li data-name="$ (jQuery)">– <a href="#View-dollar">$ (jQuery)</a></li>
<li data-name="template">– <a href="#View-template">template</a></li>
<li data-name="render">– <a href="#View-render">render</a></li>
<li data-name="remove">– <a href="#View-remove">remove</a></li>
<li data-name="events">– <a href="#View-events">events</a></li>
<li data-name="delegateEvents">– <a href="#View-delegateEvents">delegateEvents</a></li>
<li data-name="undelegateEvents">– <a href="#View-undelegateEvents">undelegateEvents</a></li>
</ul>
</div>
<div class="searchable_section">
<a class="toc_title" href="#Utility">
Utility
</a>
<ul class="toc_section">
<li data-name="Backbone.noConflict">– <a href="#Utility-Backbone-noConflict">Backbone.noConflict</a></li>
<li data-name="Backbone.$">– <a href="#Utility-Backbone-$">Backbone.$</a></li>
<li data-name="Backbone.debugInfo">– <a href="#Utility-Backbone-debugInfo">debugInfo</a></li>
</ul>
</div>
<div class="searchable_section">
<a class="toc_title" href="#faq">
F.A.Q.
</a>
<ul class="toc_section">
<li data-name="Why Backbone?">– <a href="#FAQ-why-backbone">Why Backbone?</a></li>
<li data-name="More Than One Way To Do It">– <a href="#FAQ-tim-toady">More Than One Way To Do It</a></li>
<li data-name="Nested Models and Collections">– <a href="#FAQ-nested">Nested Models & Collections</a></li>
<li data-name="Loading Bootstrapped Models">– <a href="#FAQ-bootstrap">Loading Bootstrapped Models</a></li>
<li data-name="Extending Backbone">– <a href="#FAQ-extending">Extending Backbone</a></li>
<li data-name="Traditional MVC">– <a href="#FAQ-mvc">Traditional MVC</a></li>
<li data-name="Binding this">– <a href="#FAQ-this">Binding "this"</a></li>
<li data-name="Working with Rails">– <a href="#FAQ-rails">Working with Rails</a></li>
</ul>
</div>
<div class="searchable_section">
<a class="toc_title" href="#examples">
Examples
</a>
<ul class="toc_section">
<li data-name="Todos">– <a href="#examples-todos">Todos</a></li>
<li data-name="DocumentCloud">– <a href="#examples-documentcloud">DocumentCloud</a></li>
<li data-name="USA Today">– <a href="#examples-usa-today">USA Today</a></li>
<li data-name="Rdio">– <a href="#examples-rdio">Rdio</a></li>
<li data-name="Hulu">– <a href="#examples-hulu">Hulu</a></li>
<li data-name="Quartz">– <a href="#examples-quartz">Quartz</a></li>
<li data-name="Earth">– <a href="#examples-earth">Earth</a></li>
<li data-name="Vox">– <a href="#examples-vox">Vox</a></li>
<li data-name="Gawker Media">– <a href="#examples-gawker">Gawker Media</a></li>
<li data-name="Flow">– <a href="#examples-flow">Flow</a></li>
<li data-name="Gilt Groupe">– <a href="#examples-gilt">Gilt Groupe</a></li>
<li data-name="Enigma">– <a href="#examples-enigma">Enigma</a></li>
<li data-name="NewsBlur">– <a href="#examples-newsblur">NewsBlur</a></li>
<li data-name="WordPress.com">– <a href="#examples-wordpress">WordPress.com</a></li>
<li data-name="Foursquare">– <a href="#examples-foursquare">Foursquare</a></li>
<li data-name="Bitbucket">– <a href="#examples-bitbucket">Bitbucket</a></li>
<li data-name="Disqus">– <a href="#examples-disqus">Disqus</a></li>
<li data-name="Delicious">– <a href="#examples-delicious">Delicious</a></li>
<li data-name="Khan Academy">– <a href="#examples-khan-academy">Khan Academy</a></li>
<li data-name="IRCCloud">– <a href="#examples-irccloud">IRCCloud</a></li>
<li data-name="Pitchfork">– <a href="#examples-pitchfork">Pitchfork</a></li>
<li data-name="Spin">– <a href="#examples-spin">Spin</a></li>
<li data-name="ZocDoc">– <a href="#examples-zocdoc">ZocDoc</a></li>
<li data-name="Walmart Mobile">– <a href="#examples-walmart">Walmart Mobile</a></li>
<li data-name="Groupon Now!">– <a href="#examples-groupon">Groupon Now!</a></li>
<li data-name="Basecamp">– <a href="#examples-basecamp">Basecamp</a></li>
<li data-name="Slavery Footprint">– <a href="#examples-slavery-footprint">Slavery Footprint</a></li>
<li data-name="Stripe">– <a href="#examples-stripe">Stripe</a></li>
<li data-name="Airbnb">– <a href="#examples-airbnb">Airbnb</a></li>
<li data-name="SoundCloud Mobile">– <a href="#examples-soundcloud">SoundCloud Mobile</a></li>
<li data-name="Art.sy">- <a href="#examples-artsy">Art.sy</a></li>
<li data-name="Pandora">– <a href="#examples-pandora">Pandora</a></li>
<li data-name="Inkling">– <a href="#examples-inkling">Inkling</a></li>
<li data-name="Code School">– <a href="#examples-code-school">Code School</a></li>
<li data-name="CloudApp">– <a href="#examples-cloudapp">CloudApp</a></li>
<li data-name="SeatGeek">– <a href="#examples-seatgeek">SeatGeek</a></li>
<li data-name="Easel">– <a href="#examples-easel">Easel</a></li>
<li data-name="Jolicloud">- <a href="#examples-jolicloud">Jolicloud</a></li>
<li data-name="Salon.io">– <a href="#examples-salon">Salon.io</a></li>
<li data-name="TileMill">– <a href="#examples-tilemill">TileMill</a></li>
<li data-name="Blossom">– <a href="#examples-blossom">Blossom</a></li>
<li data-name="Trello">– <a href="#examples-trello">Trello</a></li>
<li data-name="Tzigla">– <a href="#examples-tzigla">Tzigla</a></li>
</ul>
</div>
<div class="searchable_section">
<a class="toc_title" href="#changelog">
Change Log
</a>
</div>
</div>
<div class="container">
<p>
<img id="logo" src="docs/images/backbone.png" alt="Backbone.js" />
</p>
<p>
Backbone.js gives structure to web applications
by providing <b>models</b> with key-value binding and custom events,
<b>collections</b> with a rich API of enumerable functions,
<b>views</b> with declarative event handling, and connects it all to your
existing API over a RESTful JSON interface.
</p>
<p>
The project is <a href="http://github.com/jashkenas/backbone/">hosted on GitHub</a>,
and the <a href="docs/backbone.html">annotated source code</a> is available,
as well as an online <a href="test/">test suite</a>,
an <a href="examples/todos/index.html">example application</a>,
a <a href="https://github.com/jashkenas/backbone/wiki/Tutorials%2C-blog-posts-and-example-sites">list of tutorials</a>
and a <a href="#examples">long list of real-world projects</a> that use Backbone.
Backbone is available for use under the <a href="http://github.com/jashkenas/backbone/blob/master/LICENSE">MIT software license</a>.
</p>
<p>
You can report bugs and discuss features on the
<a href="http://github.com/jashkenas/backbone/issues">GitHub issues page</a>,
or add pages to the <a href="https://github.com/jashkenas/backbone/wiki">wiki</a>.
</p>
<p>
<i>
Backbone is an open-source component of
<a href="http://documentcloud.org/">DocumentCloud</a>.
</i>
</p>
<h2 id="downloads">
Downloads & Dependencies
<span style="padding-left: 7px; font-size:11px; font-weight: normal;" class="interface">(Right-click, and use "Save As")</span>
</h2>
<table>
<tr>
<td><a class="punch" href="backbone.js">Development Version (1.6.0)</a></td>
<td class="text"><i>72kb, Full source, tons of comments</i></td>
</tr>
<tr>
<td><a class="punch" href="backbone-min.js">Production Version (1.6.0)</a></td>
<td class="text" style="line-height: 16px;">
<i>7.9kb, Packed and gzipped</i><br />
<small>(<a href="backbone-min.map">Source Map</a>)</small>
</td>
</tr>
<tr>
<td><a class="punch" href="https://raw.github.com/jashkenas/backbone/master/backbone.js">Edge Version (master)</a></td>
<td>
<i>Unreleased, use at your own risk</i>
</td>
</tr>
</table>
<p>
Backbone's only hard dependency is
<a href="http://underscorejs.org/">Underscore.js</a> <small>( >= 1.8.3)</small>.
For RESTful persistence and DOM manipulation with <a href="#View">Backbone.View</a>,
include <b><a href="https://jquery.com/">jQuery</a></b> ( >= 1.11.0).
<i>(Mimics of the Underscore and jQuery APIs, such as
<a href="https://lodash.com/">Lodash</a> and
<a href="http://zeptojs.com/">Zepto</a>, will
also tend to work, with varying degrees of compatibility.)</i>
</p>
<h2 id="Getting-started">Getting Started</h2>
<p>
When working on a web application that involves a lot of JavaScript, one
of the first things you learn is to stop tying your data to the DOM. It's all
too easy to create JavaScript applications that end up as tangled piles of
jQuery selectors and callbacks, all trying frantically to keep data in
sync between the HTML UI, your JavaScript logic, and the database on your
server. For rich client-side applications, a more structured approach
is often helpful.
</p>
<p>
With Backbone, you represent your data as
<a href="#Model">Models</a>, which can be created, validated, destroyed,
and saved to the server. Whenever a UI action causes an attribute of
a model to change, the model triggers a <i>"change"</i> event; all
the <a href="#View">Views</a> that display the model's state can be notified of the
change, so that they are able to respond accordingly, re-rendering themselves with
the new information. In a finished Backbone app, you don't have to write the glue
code that looks into the DOM to find an element with a specific <i>id</i>,
and update the HTML manually
— when the model changes, the views simply update themselves.
</p>
<p>
Philosophically, Backbone is an attempt to discover the minimal set
of data-structuring (models and collections) and user interface (views
and URLs) primitives that are generally useful when building web applications with
JavaScript. In an ecosystem where overarching, decides-everything-for-you
frameworks are commonplace, and many libraries require your site to be
reorganized to suit their look, feel, and default behavior — Backbone should
continue to be a tool that gives you the <i>freedom</i> to design the full
experience of your web application.
</p>
<p>
If you're new here, and aren't yet quite sure what Backbone is for, start by
browsing the <a href="#examples">list of Backbone-based projects</a>.
</p>
<p>
Many of the code examples in this documentation are runnable, because
Backbone is included on this page.
Click the <i>play</i> button to execute them.
</p>
<h2 id="Model-View-separation">Models and Views</h2>
<img class="figure" src="docs/images/intro-model-view.svg" alt="Model-View Separation.">
<p>
The single most important thing that Backbone can help you with is keeping
your business logic separate from your user interface. When the two are
entangled, change is hard; when logic doesn't depend on UI, your
interface becomes easier to work with.
</p>
<div class="columns">
<div class="col-50">
<b>Model</b>
<ul>
<li>Orchestrates data and business logic.</li>
<li>Loads and saves data from the server.</li>
<li>Emits events when data changes.</li>
</ul>
</div>
<div class="col-50">
<b>View</b>
<ul>
<li>Listens for changes and renders UI.</li>
<li>Handles user input and interactivity.</li>
<li>Sends captured input to the model.</li>
</ul>
</div>
</div>
<p>
A <b>Model</b> manages an internal table of data attributes, and
triggers <tt>"change"</tt> events when any of its data is modified.
Models handle syncing data with a persistence layer — usually a REST API
with a backing database. Design your models as the atomic reusable objects
containing all of the helpful functions for manipulating their particular
bit of data. Models should be able to be passed around throughout your app,
and used anywhere that bit of data is needed.
</p>
<p>
A <b>View</b> is an atomic chunk of user interface. It often renders the
data from a specific model, or number of models — but views can
also be data-less chunks of UI that stand alone.
Models should be generally unaware of views. Instead, views listen to
the model <tt>"change"</tt> events, and react or re-render themselves
appropriately.
</p>
<h2 id="Model-Collections">Collections</h2>
<img class="figure" src="docs/images/intro-collections.svg" alt="Model Collections.">
<p>
A <b>Collection</b> helps you deal with a group of related models, handling
the loading and saving of new models to the server and providing helper
functions for performing aggregations or computations against a list of models.
Aside from their own events, collections also proxy through all of the
events that occur to models within them, allowing you to listen in one place
for any change that might happen to any model in the collection.
</p>
<h2 id="API-integration">API Integration</h2>
<p>
Backbone is pre-configured to sync with a RESTful API. Simply create a
new Collection with the <tt>url</tt> of your resource endpoint:
</p>
<pre>
var Books = Backbone.Collection.extend({
url: '/books'
});
</pre>
<p>
The <b>Collection</b> and <b>Model</b> components together form a direct
mapping of REST resources using the following methods:
</p>
<pre>
GET /books/ .... collection.fetch();
POST /books/ .... collection.create();
GET /books/1 ... model.fetch();
PUT /books/1 ... model.save();
DEL /books/1 ... model.destroy();
</pre>
<p>
When fetching raw JSON data from an API, a <b>Collection</b> will
automatically populate itself with data formatted as an array, while
a <b>Model</b> will automatically populate itself with data formatted
as an object:
</p>
<pre>
[{"id": 1}] ..... populates a Collection with one model.
{"id": 1} ....... populates a Model with one attribute.
</pre>
<p>
However, it's fairly common to encounter APIs that return data in a
different format than what Backbone expects. For example, consider
fetching a <b>Collection</b> from an API that returns the real data
array wrapped in metadata:
</p>
<pre>
{
"page": 1,
"limit": 10,
"total": 2,
"books": [
{"id": 1, "title": "Pride and Prejudice"},
{"id": 4, "title": "The Great Gatsby"}
]
}
</pre>
<p>
In the above example data, a <b>Collection</b> should populate using the
<tt>"books"</tt> array rather than the root object structure. This
difference is easily reconciled using a <tt>parse</tt> method that
returns (or transforms) the desired portion of API data:
</p>
<pre>
var Books = Backbone.Collection.extend({
url: '/books',
parse: function(data) {
return data.books;
}
});
</pre>
<h2 id="View-rendering">View Rendering</h2>
<img class="figure" src="docs/images/intro-views.svg" alt="View rendering.">
<p>
Each <b>View</b> manages the rendering and user interaction within its own
DOM element. If you're strict about not allowing views to reach outside
of themselves, it helps keep your interface flexible — allowing
views to be rendered in isolation in any place where they might be needed.
</p>
<p>
Backbone remains unopinionated about the process used to render <b>View</b>
objects and their subviews into UI: you define how your models get translated
into HTML (or SVG, or Canvas, or something even more exotic).
It could be as prosaic as a simple
<a href="http://underscorejs.org/#template">Underscore template</a>, or as fancy as the
<a href="http://facebook.github.io/react/docs/tutorial.html">React virtual DOM</a>.
Some basic approaches to rendering views can be found
in the <a href="https://github.com/jashkenas/backbone/wiki/Backbone%2C-The-Primer">Backbone primer</a>.
</p>
<h2 id="Routing">Routing with URLs</h2>
<img class="figure" src="docs/images/intro-routing.svg" alt="Routing">
<p>
In rich web applications, we still want to provide linkable,
bookmarkable, and shareable URLs to meaningful locations within an app.
Use the <b>Router</b> to update the browser URL whenever the user
reaches a new "place" in your app that they might want to bookmark or share.
Conversely, the <b>Router</b> detects changes to the URL — say,
pressing the "Back" button — and can tell your application exactly where you
are now.
</p>
<h2 id="Events">Backbone.Events</h2>
<p>
<b>Events</b> is a module that can be mixed in to any object, giving the
object the ability to bind and trigger custom named events. Events do not
have to be declared before they are bound, and may take passed arguments.
For example:
</p>
<pre class="runnable">
var object = {};
_.extend(object, Backbone.Events);
object.on("alert", function(msg) {
alert("Triggered " + msg);
});
object.trigger("alert", "an event");
</pre>
<p>
For example, to make a handy event dispatcher that can coordinate events
among different areas of your application: <tt>var dispatcher = _.clone(Backbone.Events)</tt>
</p>
<p id="Events-on">
<b class="header">on</b><code>object.on(event, callback, [context])</code><span class="alias">Alias: bind</span>
<br />
Bind a <b>callback</b> function to an object. The callback will be invoked
whenever the <b>event</b> is fired.
If you have a large number of different events on a page, the convention is to use colons to
namespace them: <tt>"poll:start"</tt>, or <tt>"change:selection"</tt>.
The event string may also be a space-delimited list of several events...
</p>
<pre>
book.on("change:title change:author", ...);
</pre>
<p>
Callbacks bound to the special
<tt>"all"</tt> event will be triggered when any event occurs, and are passed
the name of the event as the first argument. For example, to proxy all events
from one object to another:
</p>
<pre>
proxy.on("all", function(eventName) {
object.trigger(eventName);
});
</pre>
<p>
All Backbone event methods also support an event map syntax, as an alternative
to positional arguments:
</p>
<pre>
book.on({
"change:author": authorPane.update,
"change:title change:subtitle": titleView.update,
"destroy": bookView.remove
});
</pre>
<p>
To supply a <b>context</b> value for <tt>this</tt> when the callback is invoked,
pass the optional last argument: <tt>model.on('change', this.render, this)</tt> or
<tt>model.on({change: this.render}, this)</tt>.
</p>
<p id="Events-off">
<b class="header">off</b><code>object.off([event], [callback], [context])</code><span class="alias">Alias: unbind</span>
<br />
Remove a previously-bound <b>callback</b> function from an object. If no
<b>context</b> is specified, all of the versions of the callback with
different contexts will be removed. If no
callback is specified, all callbacks for the <b>event</b> will be
removed. If no event is specified, callbacks for <i>all</i> events
will be removed.
</p>
<pre>
// Removes just the `onChange` callback.
object.off("change", onChange);
// Removes all "change" callbacks.
object.off("change");
// Removes the `onChange` callback for all events.
object.off(null, onChange);
// Removes all callbacks for `context` for all events.
object.off(null, null, context);
// Removes all callbacks on `object`.
object.off();
</pre>
<p>
Note that calling <tt>model.off()</tt>, for example, will indeed remove <i>all</i> events
on the model — including events that Backbone uses for internal bookkeeping.
</p>
<p id="Events-trigger">
<b class="header">trigger</b><code>object.trigger(event, [*args])</code>
<br />
Trigger callbacks for the given <b>event</b>, or space-delimited list of events.
Subsequent arguments to <b>trigger</b> will be passed along to the
event callbacks.
</p>
<p id="Events-once">
<b class="header">once</b><code>object.once(event, callback, [context])</code>
<br />
Just like <a href="#Events-on">on</a>, but causes the bound callback to fire
only once before being removed. Handy for saying "the next time that X happens, do this".
When multiple events are passed in using the space separated syntax, the event will fire once
for every event you passed in, not once for a combination of all events
</p>
<p id="Events-listenTo">
<b class="header">listenTo</b><code>object.listenTo(other, event, callback)</code>
<br />
Tell an <b>object</b> to listen to a particular event on an <b>other</b>
object. The advantage of using this form, instead of <tt>other.on(event,
callback, object)</tt>, is that <b>listenTo</b> allows the <b>object</b>
to keep track of the events, and they can be removed all at once later
on. The <b>callback</b> will always be called with <b>object</b> as
context.
</p>
<pre>
view.listenTo(model, 'change', view.render);
</pre>
<p id="Events-stopListening">
<b class="header">stopListening</b><code>object.stopListening([other], [event], [callback])</code>
<br />
Tell an <b>object</b> to stop listening to events. Either call
<b>stopListening</b> with no arguments to have the <b>object</b> remove
all of its <a href="#Events-listenTo">registered</a> callbacks ... or be more