-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathwebsite_source.txt
6546 lines (4891 loc) · 271 KB
/
website_source.txt
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 class="no-js"><head>
<title>vancouver, BC apts/housing for rent - craigslist</title>
<meta name="description" content="vancouver, BC apts/housing for rent - craigslist">
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<link rel="canonical" href="https://vancouver.craigslist.org/search/apa">
<link rel="alternate" type="application/rss+xml" href="https://vancouver.craigslist.org/search/apa?availabilityMode=0&format=rss&max_bedrooms=1&min_bedrooms=1" title="RSS feed for craigslist | vancouver, BC apts/housing for rent - craigslist">
<link rel="next" href="https://vancouver.craigslist.org/search/apa?s=120&availabilityMode=0&max_bedrooms=1&min_bedrooms=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link type="text/css" rel="stylesheet" media="all" href="//www.craigslist.org/styles/cl.css?v=2c141c904c21cf0b362b8a9ce62cf33c">
<link type="text/css" rel="stylesheet" media="all" href="//www.craigslist.org/styles/search.css?v=84cf86bc094026e12fa066bbbab154ac">
<link type="text/css" rel="stylesheet" media="all" href="//www.craigslist.org/styles/jquery-ui-clcustom.css?v=3b05ddffb7c7f5b62066deff2dda9339">
<link type="text/css" rel="stylesheet" media="all" href="//www.craigslist.org/styles/leaflet.css?v=33e3dd14c7deed955c83b6927c5e1f07">
<link type="text/css" rel="stylesheet" media="all" href="//www.craigslist.org/styles/MarkerCluster.css?v=9bea97021e746649c6837e95dd9723e8">
<link type="text/css" rel="stylesheet" media="all" href="//www.craigslist.org/styles/tocsmaps.css?v=d3ac18e00752d21e15dc93be93a12756">
<!--[if IE]>
<link type="text/css" rel="stylesheet" media="all" href="//www.craigslist.org/styles/tocsmaps-ie.css?v=b21742b2ebe243963373e956ea115db0">
<![endif]-->
<script type="text/javascript"><!--
var areaCountry = "CA";
var areaID = "16";
var areaRegion = "BC";
var catAbb = "apa";
var countOfTotalText = "image {count} of {total}";
var currencySymbol = "$";
var defaultView = "grid";
var expiredFavIDs = null;
var imageConfig = {"1":{"hostname":"https://images.craigslist.org","sizes":["50x50c","300x300","600x450","1200x900"]},"0":{"hostname":"https://images.craigslist.org","sizes":["50x50c","300x300","600x450"]},"2":{"hostname":"https://images.craigslist.org","sizes":["50x50c","300x300","600x450","1200x900"]}};
var lessInfoText = "less info";
var maptileBaseUrl = "//map{s}.craigslist.org/t09/{z}/{x}/{y}.png";
var maxResults = 3000;
var noImageText = "no image";
var pID = null;
var postalLat = null;
var postalLon = null;
var purveyorCategories = null;
var searchDistance = null;
var sectionAbb = "hhh";
var sectionBase = "hhh";
var showInfoText = "show info";
var showMapTabs = 1;
var showingBanished = 0;
var showingFavorites = 0;
var starHint = "save this post in your favorites list";
var subarea = null;
var zoomToPosting = null;
--></script>
<!--[if lt IE 9]>
<script src="//www.craigslist.org/js/html5shiv.min.js?v=c0739b14a84b052680cdee44fea07435" type="text/javascript" ></script>
<script src="//www.craigslist.org/js/respond-fork.min.js?v=247e877d69233f6f77bff30aca7b5473" type="text/javascript" ></script>
<![endif]-->
<!--[if lte IE 7]>
<script src="//www.craigslist.org/js/json2.min.js?v=6e47a4bb061d538548771024390aa00b" type="text/javascript" ></script>
<![endif]-->
</head>
<body class="search has-map en">
<script type="text/javascript"><!--
function C(k){return(document.cookie.match('(^|; )'+k+'=([^;]*)')||0)[2]}
var pagetype, pagemode;
(function(){
var h = document.documentElement;
h.className = h.className.replace('no-js', 'js');
var b = document.body;
var bodyClassList = b.className.split(/\s+/);;
pagetype = bodyClassList[0]; // dangerous assumption
var fmt = C('cl_fmt');
if ( fmt === 'regular' || fmt === 'mobile' ) {
pagemode = fmt;
} else if (screen.width <= 480) {
pagemode = 'mobile';
} else {
pagemode = 'regular';
}
pagemode = pagemode === 'mobile' ? 'mobile' : 'desktop';
bodyClassList.push(pagemode);
if (C('hidesearch') === '1' && pagemode !== 'mobile') {
bodyClassList.push('hide-search');
}
var width = window.innerWidth || document.documentElement.clientWidth;
if (width > 1000) { bodyClassList.push('w1024'); }
if (typeof window.sectionBase !== 'undefined') {
var mode = (decodeURIComponent(C('cl_tocmode') || '').match(new RegExp(window.sectionBase + ':([^,]+)', 'i')) || {})[1] || window.defaultView;
if (mode) {
bodyClassList.push(mode);
}
}
b.className = bodyClassList.join(' ');
}());
--></script>
<section class="page-container" id="page-top">
<div class="bglogo"></div>
<header class="global-header wide">
<a class="header-logo" name="logoLink" href="/">CL</a>
<nav class="breadcrumbs-container">
<form id="breadcrumbform" class="breadcrumbs-form" method="get" action="/search/apa" data-action="/search/###/apa">
<input type="hidden" name="min_bedrooms" value="1">
<input type="hidden" name="max_bedrooms" value="1">
<ul class="breadcrumbs ">
<li class="crumb area">
<span class="no-js">
<a href="/">vancouver, BC</a>
</span>
<select name="areaAbb" id="areaAbb" class="js-only">
<option value="vancouver">vancouver, BC</option>
<option value="bellingham">bellingham</option>
<option value="comoxvalley">comox valley</option>
<option value="abbotsford">fraser valley</option>
<option value="kamloops">kamloops</option>
<option value="kelowna">kelowna</option>
<option value="moseslake">moses lake</option>
<option value="nanaimo">nanaimo</option>
<option value="olympic">olympic pen</option>
<option value="seattle">seattle</option>
<option value="skagit">skagit</option>
<option value="sunshine">sunshine coast</option>
<option value="victoria">victoria, BC</option>
<option value="wenatchee">wenatchee</option>
<option value="whistler">whistler / squamish</option>
<option value="yakima">yakima</option>
</select>
<span class="breadcrumb-arrow">></span>
</li>
<li class="crumb subarea">
<select id="subArea" name="subArea">
<option value="" selected>all vancouver, BC</option>
<option value="bnc">burnaby/newwest</option>
<option value="rds">delta/surrey/langley</option>
<option value="nvn">north shore</option>
<option value="rch">richmond</option>
<option value="pml">tricities/pitt/maple</option>
<option value="van">vancouver</option>
</select>
<span class="breadcrumb-arrow">></span>
</li>
<li class="crumb section">
<select name="catAbb" id="catAbb">
<option value="ccc">community</option>
<option value="eee">events</option>
<option value="sss">for sale</option>
<option value="ggg">gigs</option>
<option value="hhh" selected>housing</option>
<option value="jjj">jobs</option>
<option value="rrr">resumes</option>
<option value="bbb">services</option>
</select>
<span class="breadcrumb-arrow">></span>
</li>
<li class="crumb category">
<select id="subcatAbb" class="js-only">
<option value="hhh">all</option>
<option value="hou">apts wanted</option>
<option value="apa" selected>apts/housing for rent</option>
<option value="swp">housing swap</option>
<option value="off">office & commercial</option>
<option value="prk">parking & storage</option>
<option value="reb">real estate - by broker</option>
<option value="reo">real estate - by owner</option>
<option value="rew">real estate wanted</option>
<option value="roo">rooms & shares</option>
<option value="sha">rooms wanted</option>
<option value="sbw">sublet/temp wanted</option>
<option value="sub">sublets & temporary</option>
<option value="vac">vacation rentals</option>
</select><span class="no-js">apts/housing for rent</span>
<span class="breadcrumb-arrow">></span>
</li>
<li class="crumb no-js">
<input type="submit" value="go">
</li>
</ul>
</form>
</nav>
<div class="userlinks">
<ul class="user-actions">
<li class="user post">
<a href="https://post.craigslist.org/c/van">post</a>
</li>
<li class="user account">
<a href="https://accounts.craigslist.org/login/home">account</a>
</li>
</ul>
<ul class="user-favs-discards">
<li class="user">
<div class="favorites">
<a href="#" class="favlink"><span class="icon icon-star fav" aria-hidden="true"></span><span class="fav-number">0</span><span class="fav-label"> favorites</span></a>
</div>
</li>
<li class="user discards">
<form class="unfavform js-only" method="POST" action="/favorites">
<div class="to-banish-page">
<input type="hidden" class="lastLink" name="lastLink" value="//vancouver.craigslist.org/search/apa?availabilityMode=0&max_bedrooms=1&min_bedrooms=1">
<input type="hidden" class="lastTitle" name="lastTitle" value="vancouver, BC apts/housing for rent - craigslist">
<input type="hidden" class="unfaves" name="fl">
<input type="hidden" name="uf" value="1">
<a href="#" class="to-banish-page-link">
<span class="icon icon-trash red" aria-hidden="true"></span>
<span class="banished_count">0</span>
<span class="discards-label"> hidden</span>
</a>
</div>
</form>
</li>
</ul>
</div>
</header>
<header class="global-header narrow">
<a class="header-logo" href="/">CL</a>
<nav class="breadcrumbs-container">
<ul class="breadcrumbs">
vancouver, BC >
apts/housing for rent
</ul>
</nav>
<span class="linklike show-wide-header">...</span>
</header>
<form id="searchform" class="search-form" action="/search/apa">
<div class="querybox">
<div class="form-tab js-only"><span class="search-open" title="hide search">«</span><span class="search-closed" title="show search">»</span></div>
<input type="text" placeholder="search apts/housing for rent" name="query"
id="query" value="" autocorrect="off" class="flatinput ui-autocomplete-input"
autocapitalize="off" autocomplete="off" data-autocomplete="search">
<button type="submit" class="searchbtn">
<span class="icon icon-search" aria-hidden="true"></span>
<span class="screen-reader-text">press to search craigslist</span>
</button>
<div class="savealert">
<a class="saveme" data-action="save" href="https://accounts.craigslist.org/login?rt=L&rp=%2Fsavesearch%2Fsave%3FURL%3Dhttps%253A%252F%252Fvancouver%252Ecraigslist%252Eorg%252Fsearch%252Fapa%253FavailabilityMode%253D0%2526max%255Fbedrooms%253D1%2526min%255Fbedrooms%253D1" title="save this search" >save search</a>
</div>
</div>
<div class="search-options-container">
<h2 class="search-options-header linklike">
<div class="icon icon-toggle-gear" aria-hidden="true"></div>
options<span class="options-close">close</span>
</h2>
<input id="excats" type="hidden" name="excats">
<div class="search-options">
<div class="searchgroup categories">
<div class="cattitle">
<a href="/search/apa" title="clear all search parameters" class="reset">apts/housing for rent</a>
</div>
</div>
<input type="hidden" name="userid" value="" />
<div class="searchgroup">
<ul>
<li>
<label class="srchType">
<input type="checkbox" name="srchType" class="" value="T" >
search titles only
</label>
</li>
<li>
<label class="hasPic">
<input type="checkbox" name="hasPic" class="autosubmit" value="1" >
has image
</label>
</li>
<li>
<label class="postedToday">
<input type="checkbox" name="postedToday" class="autosubmit" value="1" >
posted today
</label>
</li>
<li>
<label class="bundleDuplicates">
<input type="checkbox" name="bundleDuplicates" class="autosubmit" value="1" >
bundle duplicates
</label>
</li>
<li>
<label class="searchNearby">
<input type="checkbox" name="searchNearby" class="autosubmit" value="1" >
include nearby areas
</label>
</li>
</ul>
<ul class="js-only nearbyAreas ">
<li class="">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_2"
value="217"
disabled="disabled"
/>
bellingham, WA <small>(bli)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_2">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_16"
value="621"
disabled="disabled"
/>
cariboo, BC <small>(cbo)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_1">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_7"
value="473"
disabled="disabled"
/>
comox valley, BC <small>(cmx)</small>
</label>
</li>
<li class="">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_1"
value="471"
disabled="disabled"
/>
fraser valley, BC <small>(abb)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_1">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_10"
value="381"
disabled="disabled"
/>
kamloops, BC <small>(kml)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_1">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_11"
value="380"
disabled="disabled"
/>
kelowna / okanagan <small>(kel)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_2">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_17"
value="324"
disabled="disabled"
/>
kennewick-pasco-richland <small>(kpr)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_2">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_14"
value="655"
disabled="disabled"
/>
moses lake, WA <small>(mlk)</small>
</label>
</li>
<li class="">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_0"
value="382"
disabled="disabled"
/>
nanaimo, BC <small>(nmo)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_1">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_8"
value="466"
disabled="disabled"
/>
olympic peninsula <small>(olp)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_2">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_15"
value="9"
disabled="disabled"
/>
portland, OR <small>(pdx)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_3">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_19"
value="232"
disabled="disabled"
/>
salem, OR <small>(sle)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_1">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_9"
value="2"
disabled="disabled"
/>
seattle-tacoma <small>(sea)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_1">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_6"
value="461"
disabled="disabled"
/>
skagit / island / SJI <small>(mvw)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_3">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_18"
value="95"
disabled="disabled"
/>
spokane / coeur d'alene <small>(spk)</small>
</label>
</li>
<li class="">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_4"
value="622"
disabled="disabled"
/>
sunshine coast, BC <small>(sun)</small>
</label>
</li>
<li class="">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_3"
value="177"
disabled="disabled"
/>
victoria, BC <small>(vic)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_2">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_12"
value="325"
disabled="disabled"
/>
wenatchee, WA <small>(wen)</small>
</label>
</li>
<li class="">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_5"
value="472"
disabled="disabled"
/>
whistler / squamish <small>(whi)</small>
</label>
</li>
<li class="nearbyZone nearbyZone_2">
<label class="nearby">
<input
type="checkbox"
class="use-id nearbyArea"
name="nearbyArea"
id="nearbyArea_13"
value="246"
disabled="disabled"
/>
yakima, WA <small>(yak)</small>
</label>
</li>
<li>
<span class="nextNearbyZone linklike" data-zone="1">
+ show <span id="nearbyNumber">20</span> more...
</span>
</li>
</ul>
</div>
<div class="searchgroup">
<span class="searchfieldlabel">km from postal code</span>
<input type="number" max="200" min="0" size="3" inputmode="numeric"
class="flatinput searchInput search_distance" placeholder="km"
name="search_distance"
value=""
/>
<input type="text" class="flatinput searchInput postal" placeholder="from postal"
size="7" name="postal" value="">
<span class="icon icon-locate"></span>
</div>
<div class="searchgroup minmax ">
<span class="searchfieldlabel">price</span>
<input type="tel" name="min_price" class="flatinput min" placeholder="min" title="whole number, no letters or symbols" value="">
<input type="tel" name="max_price" class="flatinput max" placeholder="max" title="whole number, no letters or symbols" value="">
</div>
<div class="searchgroup bed-bath-selects">
<span class="searchfieldlabel">bedrooms</span>
<select name="min_bedrooms" class="autosubmit">
<option value="">min</option>
<option value="1" selected="selected">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
</select>
-
<select name="max_bedrooms" class="autosubmit">
<option value="">max</option>
<option value="1" selected="selected">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
</select>
</div>
<div class="searchgroup bed-bath-selects">
<span class="searchfieldlabel">bathrooms</span>
<select name="min_bathrooms" class="autosubmit">
<option value="">min</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
</select>
-
<select name="max_bathrooms" class="autosubmit">
<option value="">max</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
</select>
</div>
<div class="searchgroup minmax ">
<span class="searchfieldlabel">ft<sup>2</sup></span>
<input type="tel" name="minSqft" class="flatinput min" placeholder="min" title="whole number, no letters or symbols" value="">
<input type="tel" name="maxSqft" class="flatinput max" placeholder="max" title="whole number, no letters or symbols" value="">
</div>
<div class="searchgroup">
<span class="searchfieldlabel">availability</span>
<select class="autosubmit" name="availabilityMode">
<option value="0" selected="selected">all dates</option>
<option value="1">within 30 days</option>
<option value="2">beyond 30 days</option>
</select>
</div>
<div class="searchgroup"><label class="pets_cat">
<input type="checkbox" name="pets_cat" value="1" class="autosubmit" />
cats ok
</label><br>
<label class="pets_dog">
<input type="checkbox" name="pets_dog" value="1" class="autosubmit" />
dogs ok
</label><br>
<label class="is_furnished">
<input type="checkbox" name="is_furnished" value="1" class="autosubmit" />
furnished
</label><br>
<label class="no_smoking">
<input type="checkbox" name="no_smoking" value="1" class="autosubmit" />
no smoking
</label><br>
<label class="wheelchaccess">
<input type="checkbox" name="wheelchaccess" value="1" class="autosubmit" />
wheelchair access
</label><br>
</div><div class="searchgroup"><div class="search-attribute hide-list" data-attr="housing_type">
<div class="title linklike ">
<span class="plus">▸</span><span class="minus">▾</span> housing type
</div>
<ul class="list">
<li class="checkbox ">
<label>
<input id="housing_type_1" name="housing_type" class="multi_checkbox" value="1" type="checkbox"
/>
apartment
</label>
</li>
<li class="checkbox ">
<label>
<input id="housing_type_2" name="housing_type" class="multi_checkbox" value="2" type="checkbox"
/>
condo
</label>
</li>
<li class="checkbox ">
<label>
<input id="housing_type_3" name="housing_type" class="multi_checkbox" value="3" type="checkbox"
/>
cottage/cabin
</label>
</li>
<li class="checkbox ">
<label>
<input id="housing_type_4" name="housing_type" class="multi_checkbox" value="4" type="checkbox"
/>
duplex
</label>
</li>
<li class="checkbox ">
<label>
<input id="housing_type_5" name="housing_type" class="multi_checkbox" value="5" type="checkbox"
/>
flat
</label>
</li>
<li class="checkbox ">
<label>
<input id="housing_type_6" name="housing_type" class="multi_checkbox" value="6" type="checkbox"
/>
house
</label>
</li>
<li class="checkbox ">
<label>
<input id="housing_type_7" name="housing_type" class="multi_checkbox" value="7" type="checkbox"
/>
in-law
</label>
</li>
<li class="checkbox ">
<label>
<input id="housing_type_8" name="housing_type" class="multi_checkbox" value="8" type="checkbox"
/>
loft
</label>
</li>
<li class="checkbox ">
<label>
<input id="housing_type_9" name="housing_type" class="multi_checkbox" value="9" type="checkbox"
/>
townhouse
</label>
</li>
<li class="checkbox ">
<label>
<input id="housing_type_10" name="housing_type" class="multi_checkbox" value="10" type="checkbox"
/>
manufactured
</label>
</li>
<li class="checkbox ">
<label>
<input id="housing_type_11" name="housing_type" class="multi_checkbox" value="11" type="checkbox"
/>
assisted living
</label>
</li>
<li class="checkbox ">
<label>
<input id="housing_type_12" name="housing_type" class="multi_checkbox" value="12" type="checkbox"
/>
land
</label>
</li>
<li class="selectall js-only ">
<span class="all">select all</span>
<span class="none">deselect all</span>
</li>
</ul>
</div>
<div class="search-attribute hide-list" data-attr="laundry">
<div class="title linklike ">
<span class="plus">▸</span><span class="minus">▾</span> laundry
</div>
<ul class="list">
<li class="checkbox ">
<label>
<input id="laundry_1" name="laundry" class="multi_checkbox" value="1" type="checkbox"
/>
w/d in unit
</label>
</li>
<li class="checkbox ">
<label>
<input id="laundry_4" name="laundry" class="multi_checkbox" value="4" type="checkbox"
/>
w/d hookups
</label>
</li>
<li class="checkbox ">
<label>
<input id="laundry_2" name="laundry" class="multi_checkbox" value="2" type="checkbox"
/>
laundry in bldg
</label>
</li>
<li class="checkbox ">
<label>
<input id="laundry_3" name="laundry" class="multi_checkbox" value="3" type="checkbox"
/>
laundry on site
</label>
</li>
<li class="checkbox ">
<label>
<input id="laundry_5" name="laundry" class="multi_checkbox" value="5" type="checkbox"
/>
no laundry on site
</label>
</li>
</ul>
</div>
<div class="search-attribute hide-list" data-attr="parking">
<div class="title linklike ">
<span class="plus">▸</span><span class="minus">▾</span> parking
</div>
<ul class="list">
<li class="checkbox ">
<label>
<input id="parking_1" name="parking" class="multi_checkbox" value="1" type="checkbox"
/>
carport
</label>
</li>
<li class="checkbox ">
<label>
<input id="parking_2" name="parking" class="multi_checkbox" value="2" type="checkbox"
/>
attached garage
</label>
</li>
<li class="checkbox ">
<label>
<input id="parking_3" name="parking" class="multi_checkbox" value="3" type="checkbox"
/>
detached garage
</label>
</li>
<li class="checkbox ">
<label>
<input id="parking_4" name="parking" class="multi_checkbox" value="4" type="checkbox"
/>
off-street parking
</label>
</li>
<li class="checkbox ">
<label>
<input id="parking_5" name="parking" class="multi_checkbox" value="5" type="checkbox"
/>
street parking
</label>
</li>
<li class="checkbox ">
<label>
<input id="parking_6" name="parking" class="multi_checkbox" value="6" type="checkbox"
/>
valet parking
</label>
</li>
<li class="checkbox ">
<label>
<input id="parking_7" name="parking" class="multi_checkbox" value="7" type="checkbox"
/>
no parking
</label>
</li>
<li class="selectall js-only ">
<span class="all">select all</span>
<span class="none">deselect all</span>
</li>
</ul>
</div>
</div>
<div class="searchgroup">
<div class="searchfieldlabel">open house date</div>
<select class="autosubmit" id="sale_date" name="sale_date">
<option>all dates</option>
<option value="2019-01-06">jan 6 - today</option>
<option value="2019-01-07">jan 7 - tomorrow</option>
<option value="2019-01-08">jan 8 - tuesday</option>
<option value="2019-01-09">jan 9 - wednesday</option>
<option value="2019-01-10">jan 10 - thursday</option>
<option value="2019-01-11">jan 11 - friday</option>
<option value="2019-01-12">jan 12 - saturday</option>
<option value="2019-01-13">jan 13 - sunday</option>
<option value="2019-01-14">jan 14 - monday</option>
<option value="2019-01-15">jan 15 - tuesday</option>
<option value="2019-01-16">jan 16 - wednesday</option>
<option value="2019-01-17">jan 17 - thursday</option>
<option value="2019-01-18">jan 18 - friday</option>
<option value="2019-01-19">jan 19 - saturday</option>
<option value="2019-01-20">jan 20 - sunday</option>
<option value="2019-01-21">jan 21 - monday</option>
<option value="2019-01-22">jan 22 - tuesday</option>
<option value="2019-01-23">jan 23 - wednesday</option>
<option value="2019-01-24">jan 24 - thursday</option>
<option value="2019-01-25">jan 25 - friday</option>
<option value="2019-01-26">jan 26 - saturday</option>
<option value="2019-01-27">jan 27 - sunday</option>
<option value="2019-01-28">jan 28 - monday</option>
<option value="2019-01-29">jan 29 - tuesday</option>
<option value="2019-01-30">jan 30 - wednesday</option>
<option value="2019-01-31">jan 31 - thursday</option>
<option value="2019-02-01">feb 1 - friday</option>
<option value="2019-02-02">feb 2 - saturday</option>
</select>
</div>
<div class="searchgroup resetsearch">
<a href="/search/apa" title="clear all search parameters" class="reset linklike">reset</a>
<button type="submit" class="searchlink linklike">update search</button>
</div>
</div>
</div>
<div class="search-legend">
<div class="search-view js-only">
<div class="dropdown dropdown-icons dropdown-arrows dropdown-view" role="toolbar" aria-label="view options" aria-expanded="false">
<ul class="dropdown-list">
<li class="dropdown-item mode sel">
<button title="show results in a list" data-selection="list" id="listview">
<span class="view-list icon"></span>list
</button>
<span class="toggle-arrow"></span>
</li>
<li class="dropdown-item mode">
<button title="show results in a list with thumbnail pictures" data-selection="pic" id="picview" >
<span class="view-thumb icon"></span>thumb
</button>
<span class="toggle-arrow"></span>
</li>
<li class="dropdown-item mode">
<button title="show results side-by-side with larger pictures" data-selection="grid" id="gridview">
<span class="view-gallery icon"></span>gallery
</button>
<span class="toggle-arrow"></span>
</li>
<li class="dropdown-item mode">
<button title="show results on a map" data-selection="map" id="mapview" >
<span class="view-map icon"></span>map
</button>
<span class="toggle-arrow"></span>
</li>
</ul>
</div>
</div>
<div class="search-sort" >
<div class="dropdown dropdown-sort dropdown-arrows" data-default-sort="date" role="toolbar" aria-label="sort options" aria-expanded="false">
<ul class="dropdown-list">
<li class="dropdown-item mode " aria-selected="false">
<a data-selection="upcoming" title="show upcoming open houses" href="/search/apa?sort=upcoming&availabilityMode=0&max_bedrooms=1&min_bedrooms=1">upcoming <span class="toggle-arrow"></span></a>
</li>
<li class="dropdown-item mode sel" aria-selected="true">
<a data-selection="date" title="show newest matches first" href="/search/apa?sort=date&availabilityMode=0&max_bedrooms=1&min_bedrooms=1">newest <span class="toggle-arrow"></span></a>
</li>
<li class="dropdown-item mode " aria-selected="false">
<a data-selection="priceasc" title="sort by price, lowest to highest" href="/search/apa?sort=priceasc&availabilityMode=0&max_bedrooms=1&min_bedrooms=1">price ↑ <span class="toggle-arrow"></span></a>
</li>
<li class="dropdown-item mode " aria-selected="false">
<a data-selection="pricedsc" title="sort by price, highest to lowest" href="/search/apa?sort=pricedsc&availabilityMode=0&max_bedrooms=1&min_bedrooms=1">price ↓ <span class="toggle-arrow"></span></a>
</li>
</ul>
</div>
</div>
<div class="paginator buttongroup firstpage">
<span class="resulttotal">