-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmenupages-morningside-heights.html
1386 lines (1027 loc) · 121 KB
/
menupages-morningside-heights.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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><script type="text/javascript">var NREUMQ=NREUMQ||[];NREUMQ.push(["mark","firstbyte",new Date().getTime()]);</script>
<script type='text/javascript'>
var page_type = 'default'
</script>
<script language="Javascript">
var OAS_RN = new String (Math.random());
var OAS_RNS = OAS_RN.substring (2,11);
</script>
<script type='text/javascript'>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/18180943/MenuPages/new-york-city', [1, 1], 'div-gpt-ad-overlay-1').addService(googletag.pubads());
googletag.defineOutOfPageSlot('/18180943/MenuPages/new-york-city', 'div-gpt-ad-overlay-2').addService(googletag.pubads());
googletag.enableServices();
});
</script>
<title>
Restaurants - New York City, Menus, Ratings, Reviews, NYC - MenuPages Restaurant Search
}
</title>
<!-- smart app tag-->
<meta name="apple-itunes-app" content="app-id=586374537, affiliate-data=myAffiliateData, app-argument=myURL">
<!-- smart app tag-->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="y_key" content="e25b9f9e6714f078"><!-- key for yahoo site verification -->
<!---->
<!--<meta name="content.tags.primary" content=";network - MenuPages,;city - New York City" />-->
<!--<meta name="content.tags" content="" />-->
<!--<meta name="content.hierarchy" content="New York City:MenuPages::"/> -->
<!--<meta name="content.city" content="New York City" />-->
<!--<meta name="content.area" content="" />-->
<!--<meta name="content.neighborhood" content="" />-->
<!--<meta name="content.session" content="not logged in" />-->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!-- Prevent search engines from crawling menupages info from open directorys-->
<meta name="robots" content="NOODP">
<meta name="robots" content="NOYDIR">
<link rel="icon" type="image/ico" href="http://static.menupages.com/images/favicon.ico" />
<link rel="apple-touch-icon" type="image/png" href="http://static.menupages.com/images/apple-touch-icon.png"/>
<link rel="profile" href="http://microformats.org/profile/hcard">
<link rel="stylesheet" href="http://static.menupages.com/c/core.css" type="text/css" media="all" />
<script type="text/javascript">
var ua = RegExp(" Chrome/").test(navigator.userAgent);
if (ua) {
var head = document.getElementsByTagName("head")[0];
var css = document.createElement("link");
css.setAttribute("rel", "stylesheet");
css.setAttribute("href", "http://static.menupages.com/c/core-chrome.css");
css.setAttribute("type", "text/css");
css.setAttribute("media", "screen");
head.appendChild(css);
}
</script>
<link rel="stylesheet" href="http://static.menupages.com/c/restaurant-search.css?v=20160211" type="text/css" media="all" />
<!--[if lte IE 6]>
<link rel="stylesheet" href="http://static.menupages.com/c/ie6.css" type="text/css" media="screen, projection" />
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" href="http://static.menupages.com/c/ie7.css" type="text/css" media="screen, projection" />
<![endif]-->
<script src="https://code.jquery.com/jquery-1.8.3.min.js"></script>
<!-- <script type="text/javascript" src="http://static.menupages.com/j/jquery.js" ></script> -->
<script type="text/javascript" src="http://static.menupages.com/j/scripts.js"></script>
<script type="text/javascript">
var search_name_text = "Type New York City restaurant name";
var current_city = "";
</script>
<script type='text/javascript'>
var page_type = 'search'
</script>
<meta name="ROBOTS" content="NOINDEX, FOLLOW" />
</head>
<body onload="" class="restaurants new-york-city " >
<div id='div-gpt-ad-overlay-1'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-overlay-1'); });
</script>
</div>
<div id='div-gpt-ad-overlay-2'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-overlay-2'); });
</script>
</div>
<div class="global-hdr">
<!-- <p class="ineffable"><a href="#content">Skip to content</a>, or <a href="#search">skip to search</a>.</p> -->
<div id="utility-bar">
<div id="change-city">
<h2>Welcome to MenuPages - Please Select a city:</h2>
<ul>
<li class="newyork" id="new-york"><a href="http://menupages.com/">New York City</a></li>
<li class="sanfrancisco" id="san-francisco"><a href="http://sanfrancisco.menupages.com/">San Francisco</a></li>
<li class="losangeles" id="los-angeles"><a href="http://losangeles.menupages.com/">Los Angeles</a></li>
<li class="philadelphia" id="philadelphia"><a href="http://philadelphia.menupages.com/">Philadelphia</a></li>
<li class="boston" id="boston"><a href="http://boston.menupages.com/">Boston</a></li>
<li class="chicago" id="chicago"><a href="http://chicago.menupages.com/">Chicago</a></li>
<li class="washington" id="washington-dc"><a href="http://washingtondc.menupages.com/">Washington, DC</a></li>
<li class="southflorida" id="south-florida"><a href="http://southflorida.menupages.com/">South Florida</a></li>
<li>
<ul class="destinations">
<li class="new">New Menupages Desintations</li>
<li class="london"><a href="http://london.menupages.com/">London</a></li>
<li class="divider"> </li>
<li class="paris"><a href="http://paris.menupages.com/">Paris</a></li>
</ul>
</li>
<li class="hide"><a href="#">hide</a></li>
</ul>
</div><!-- /end #change-city -->
<div id="global-nav">
<ul>
<li class="nav-home"><a href="/">Home</a></li>
<li class="nav-my-menupages"><a href="/mymenupages/">My MenuPages</a></li>
<li class="nav-restaurateurs"><a href="/for-restaurants">Restaurateurs</a></li>
<li class="nav-submit"><a href="/submitmenu">Submit a Menu</a></li>
<li class="nav-changecity"><a href="#" id="show-changecity">Change City</a></li>
<li class="nav-fooddelivery"><a href="http://www.seamless.com/nyc/" >Food Delivery</a></li>
<li class="nav-login"><a href="/mymenupages/login?log=1" >Login</a> </li>
</ul>
</div> <!-- /end #global-nav -->
</div><!-- /end #utility-bar -->
<div id="global-search" class="col-6 row">
<div><a href="/" title="click here for the MenuPages homepage">MenuPages</a></div>
<h3>Now Serving: <strong>16108</strong> Menus for New York City Restaurants</h3>
<div id="search-wrp">
<form id="Form1" name="frmMainMaster" method="get" action="/restaurants/search" onsubmit="return submitStd()">
<div id="search-box" class="std-search">
<ul>
<li class="active"><a href="#" id="std-search">Search</a></li>
<li><a href="#" id="adv-search">Advanced</a></li>
<!-- <li><a href="#" id="food-search">Find-A-Food</a></li> -->
<li class="txt-wrap">
<fieldset>
<input type="text" class="input-txt" name="txtHeaderSearch" id="txtHeaderSearch" maxlength="150" value="Type New York City restaurant name" />
<!-- <input type="text" class="input-txt" name="txtCategoryOrItem" id="txtCategoryOrItem" style="display:none;" maxlength="150" value="" /> -->
</fieldset>
</li>
</ul>
</div>
<input type="image" id="main_submit" src="http://static.menupages.com/images/search_btn.gif" />
</form>
</div>
<div class="random-img" id="random-img-hdr"><img src="/images/illo/MP_chinese.jpg" alt="" /></div>
<div id="adv-search-box">
<form id="Form2" name="frmMainAdv" method="post" action="/advancesearch/go" onsubmit="return submitAdvanced()">
<div id="adv-submit">
<input type="image" class="submit-btn" src="http://static.menupages.com/gfx/submit-btn.png" />
</div>
<div class="advanced">
<ul>
<li id="radio-select-wrp">
<input type="radio" id="radio_areas" checked="checked" name="area-neighborhood" onclick="switchAdvSearch('area')" /><label id="radio_areas_label" for="radio_areas">Areas</label>
<input type="radio" id="radio_neighborhood" name="area-neighborhood" onclick="switchAdvSearch('neighborhood')" /><label id="radio_neighborhood_label" for="radio_neighborhood">Neighborhood</label>
</li>
<li class="select-multi"
id="cboArea-wrp">
<div class="input-wrp">
<select multiple="multiple" name="areas" id="id_areas">
<option value="all-areas">All Areas</option>
<option value="brooklyn">Brooklyn</option>
<option value="east-village-les">East Village/ LES</option>
<option value="midtown-east">Midtown East</option>
<option value="midtown-south-chelsea">Midtown South / Chelsea</option>
<option value="midtown-west">Midtown West</option>
<option value="murray-hill-gramercy">Murray Hill / Gramercy</option>
<option value="queens">Queens</option>
<option value="soho-trbca-findist">Soho/Trbca/FinDist</option>
<option value="upper-east-side">Upper East Side</option>
<option value="upper-west-side">Upper West Side</option>
<option value="uptown">Uptown</option>
<option value="village-w-village">Village/ W Village</option>
</select>
</div>
</li>
<li class="select-multi"
id="cboNeighborhood-wrp">
<div class="input-wrp">
<select multiple="multiple" name="neighborhood" id="id_neighborhood">
<option value="all-neighborhoods">All Neighborhoods</option>
<option value="astoria">Astoria</option>
<option value="bath-beach">Bath Beach</option>
<option value="bay-ridge">Bay Ridge</option>
<option value="bayside">Bayside</option>
<option value="bedford-stuyvesant">Bedford-Stuyvesant</option>
<option value="bensonhurst">Bensonhurst</option>
<option value="borough-park">Borough Park</option>
<option value="brighton-beach-manhattan-beach">Brighton Beach / Manhattan Beach</option>
<option value="brooklyn-hts-dumbo">Brooklyn Hts / DUMBO</option>
<option value="brownsville">Brownsville</option>
<option value="bushwick">Bushwick</option>
<option value="canarsie">Canarsie</option>
<option value="central-village-noho">Central Village / Noho</option>
<option value="chelsea-midtown-south">Chelsea / Midtown South</option>
<option value="chinatown-two-bridges">Chinatown / Two Bridges</option>
<option value="cobble-hill-carroll-grdns">Cobble Hill / Carroll Grdns</option>
<option value="college-point">College Point</option>
<option value="coney-island">Coney Island</option>
<option value="corona">Corona</option>
<option value="crown-heights">Crown Heights</option>
<option value="ditmas-park">Ditmas Park</option>
<option value="dyker-heights">Dyker Heights</option>
<option value="east-30s">East 30's</option>
<option value="east-40s">East 40's</option>
<option value="east-50s">East 50's</option>
<option value="east-60s">East 60's</option>
<option value="east-70s">East 70's</option>
<option value="east-80s">East 80's</option>
<option value="east-90s">East 90's</option>
<option value="east-elmhurst-lga">East Elmhurst / LGA</option>
<option value="east-harlem">East Harlem</option>
<option value="east-new-york">East New York</option>
<option value="east-village">East Village</option>
<option value="elmhurst">Elmhurst</option>
<option value="financial-district">Financial District</option>
<option value="flatbush">Flatbush</option>
<option value="flatiron-union-square">Flatiron / Union Square</option>
<option value="flatlands">Flatlands</option>
<option value="flushing">Flushing</option>
<option value="forest-hills">Forest Hills</option>
<option value="fort-hamilton">Fort Hamilton</option>
<option value="fresh-meadows-kew-gardens-hills">Fresh Meadows / Kew Gardens Hills</option>
<option value="ft-greene-clinton-hill">Ft. Greene / Clinton Hill</option>
<option value="glen-oaks-floral-park-bellerose">Glen Oaks / Floral Park / Bellerose</option>
<option value="gramercy-kips-bay">Gramercy / Kips Bay</option>
<option value="gravesend">Gravesend</option>
<option value="harlem">Harlem</option>
<option value="hollis-st-albans">Hollis / St Albans</option>
<option value="howard-beach-">Howard Beach </option>
<option value="jackson-heights">Jackson Heights</option>
<option value="jamaica">Jamaica</option>
<option value="kew-gardens">Kew Gardens</option>
<option value="kings-highway-homecrest">Kings Highway / Homecrest</option>
<option value="laurelton-rosedale">Laurelton / Rosedale</option>
<option value="lefferts-gardens">Lefferts Gardens</option>
<option value="little-neck-douglaston-">Little Neck / Douglaston </option>
<option value="long-island-city">Long Island City</option>
<option value="lower-east-side">Lower East Side</option>
<option value="marine-park-gerritsen-beach">Marine Park / Gerritsen Beach</option>
<option value="middle-village-maspeth">Middle Village / Maspeth</option>
<option value="midwood">Midwood</option>
<option value="mill-basin-bergen-beach">Mill Basin / Bergen Beach</option>
<option value="morningside-heights">Morningside Heights</option>
<option value="oakland-gardens">Oakland Gardens</option>
<option value="ozone-park-jfk">Ozone Park / JFK</option>
<option value="park-slope-prospect-hts">Park Slope / Prospect Hts</option>
<option value="prospect-park-south-kensington">Prospect Park South / Kensington</option>
<option value="queens-village-cambria-heights-">Queens Village / Cambria Heights </option>
<option value="rego-park">Rego Park</option>
<option value="richmond-hill">Richmond Hill</option>
<option value="ridgewood-glendale">Ridgewood / Glendale</option>
<option value="rockaway">Rockaway</option>
<option value="sheepshead-bay">Sheepshead Bay</option>
<option value="soho-little-italy">Soho / Little Italy</option>
<option value="south-jamaica-rochdale-springfield-gardens">South Jamaica / Rochdale / Springfield Gardens</option>
<option value="sunnyside">Sunnyside</option>
<option value="sunset-park">Sunset Park</option>
<option value="tribeca">Tribeca</option>
<option value="washington-hts-inwood">Washington Hts / Inwood</option>
<option value="west-30s">West 30's</option>
<option value="west-40s">West 40's</option>
<option value="west-50s">West 50's</option>
<option value="west-60s">West 60's</option>
<option value="west-70s">West 70's</option>
<option value="west-80s">West 80's</option>
<option value="west-90s-100s">West 90's & 100's</option>
<option value="west-village">West Village</option>
<option value="whitestone-">Whitestone </option>
<option value="williamsburg-greenpoint">Williamsburg / Greenpoint</option>
<option value="woodhaven">Woodhaven</option>
<option value="woodside">Woodside</option>
</select>
</div>
</li>
<li class="select-multi"
id="cboCuisine-wrp">
<label for="id_cuisines">Cuisines</label>
<div class="input-wrp">
<select multiple="multiple" name="cuisines" id="id_cuisines">
<option value="all-cuisines">All Cusines</option>
<option value="afghan">Afghan</option>
<option value="african">African</option>
<option value="american-new">American (New)</option>
<option value="american-traditional">American (Traditional)</option>
<option value="argentinean">Argentinean</option>
<option value="asian-other">Asian (other)</option>
<option value="asian-fusion">Asian Fusion</option>
<option value="australian">Australian</option>
<option value="austrian">Austrian</option>
<option value="bagels">Bagels</option>
<option value="bakeries">Bakeries</option>
<option value="bar-food">Bar Food</option>
<option value="barbecue">Barbecue</option>
<option value="belgian">Belgian</option>
<option value="bistro">Bistro</option>
<option value="brazilian">Brazilian</option>
<option value="british-modern">British (Modern)</option>
<option value="british-traditional">British (Traditional)</option>
<option value="burgers">Burgers</option>
<option value="burmese">Burmese</option>
<option value="cafes-coffeehouses">Cafes & Coffeehouses</option>
<option value="cajun-creole">Cajun & Creole</option>
<option value="californian">Californian</option>
<option value="caribbean">Caribbean</option>
<option value="central-american">Central American</option>
<option value="central-asian">Central Asian</option>
<option value="cheesesteaks">Cheesesteaks</option>
<option value="chicken">Chicken</option>
<option value="chinese">Chinese</option>
<option value="cocktails">Cocktails</option>
<option value="crepes">Crepes</option>
<option value="cuban">Cuban</option>
<option value="delis">Delis</option>
<option value="desserts">Desserts</option>
<option value="dim-sum">Dim Sum</option>
<option value="diners-coffee-shops">Diners & Coffee Shops</option>
<option value="dutch">Dutch</option>
<option value="eastern-european">Eastern European</option>
<option value="eclectic-international">Eclectic & International</option>
<option value="ethiopian">Ethiopian</option>
<option value="filipino">Filipino</option>
<option value="fish-chips">Fish & Chips</option>
<option value="french">French</option>
<option value="gastropub">Gastropub</option>
<option value="german">German</option>
<option value="greek">Greek</option>
<option value="haitian">Haitian</option>
<option value="hawaiian">Hawaiian</option>
<option value="health-food">Health Food</option>
<option value="hot-dogs">Hot Dogs</option>
<option value="indian">Indian</option>
<option value="indonesian">Indonesian</option>
<option value="irish">Irish</option>
<option value="italian">Italian</option>
<option value="jamaican">Jamaican</option>
<option value="japanese">Japanese</option>
<option value="korean">Korean</option>
<option value="kosher">Kosher</option>
<option value="latin-american">Latin American</option>
<option value="local-organic">Local/Organic</option>
<option value="malaysian">Malaysian</option>
<option value="mediterranean">Mediterranean</option>
<option value="mexican">Mexican</option>
<option value="middle-eastern">Middle Eastern</option>
<option value="moroccan">Moroccan</option>
<option value="new-england">New England</option>
<option value="noodle-shops">Noodle Shops</option>
<option value="nuevo-latino">Nuevo Latino</option>
<option value="other">Other</option>
<option value="pakistani">Pakistani</option>
<option value="persian">Persian</option>
<option value="peruvian">Peruvian</option>
<option value="pizza">Pizza</option>
<option value="polish">Polish</option>
<option value="portuguese">Portuguese</option>
<option value="puerto-rican-dominican">Puerto Rican/Dominican</option>
<option value="russian">Russian</option>
<option value="salads">Salads</option>
<option value="sandwiches">Sandwiches</option>
<option value="scandinavian">Scandinavian</option>
<option value="seafood">Seafood</option>
<option value="small-plates-tapas">Small Plates/Tapas</option>
<option value="smoothies-juice-bar">Smoothies/Juice Bar</option>
<option value="soups">Soups</option>
<option value="south-american">South American</option>
<option value="southern-soul">Southern & Soul</option>
<option value="southwestern">Southwestern</option>
<option value="spanish">Spanish</option>
<option value="sri-lankan">Sri Lankan</option>
<option value="steakhouses">Steakhouses</option>
<option value="sushi">Sushi</option>
<option value="swiss">Swiss</option>
<option value="teahouses">Teahouses</option>
<option value="thai">Thai</option>
<option value="tibetan">Tibetan</option>
<option value="turkish">Turkish</option>
<option value="vegan">Vegan</option>
<option value="vegetarian-friendly">Vegetarian-Friendly</option>
<option value="venezuelan">Venezuelan</option>
<option value="vietnamese">Vietnamese</option>
<option value="wild-game">Wild Game</option>
<option value="wine-bar">Wine Bar</option>
<option value="wings">Wings</option>
</select>
</div>
</li>
<li class="input-txt"
id="txtZipCode-wrp">
<label for="id_zip_code">Zip code</label>
<div class="input-wrp">
<input type="text" name="zip_code" id="id_zip_code" />
</div>
</li>
<li class="input-txt"
id="txtRestaurantName-wrp">
<label for="id_restaurant_name">Restaurant name</label>
<div class="input-wrp">
<input id="id_restaurant_name" type="text" name="restaurant_name" maxlength="255" />
</div>
</li>
</ul>
</div><!-- /end .advanced -->
</form>
<p class="multi-select-hint">Hold down Control (PC) or Command (Mac) key + mouseclick to select more than one option </p>
</div><!-- /end #adv-search-box -->
</div><!-- /end #global-search -->
</div><!-- /end .global-hdr -->
<div class="ad-wrap row">
<div class="col-6 ad-spot ad-728x90">
<div class="content">
<div id="div-gpt-ad-744803490" style="margin-left:auto; margin-right:auto;">
<script type="text/javascript">
googletag.cmd.push(function() {
googletag.defineSlot('/18180943/MenuPages/new-york-city/new-york-city_search', [728, 90], 'div-gpt-ad-744803490').addService(googletag.pubads());
googletag.enableServices();
googletag.display("div-gpt-ad-744803490");
});
</script>
</div>
</div><!-- end/.content -->
<div class="content">
</div><!-- end/.content -->
</div><!-- end/.col-6 .ad-spot .ad-728x90 -->
</div>
<script type="text/javascript" src="http://static.menupages.com/j/header.js"></script></ul>
<div class="body-wrp">
<div id="content-wrp" class="col-3-300ad">
<div id="breadcrumbs">
<p>
</p>
</div>
<div id="content-main">
<div id="content-primary" class="mc">
<div class="head">
<h1><strong>New York City Restaurants:</strong>
</h1>
</div><!-- end/.head -->
<div class="content" id="searchresults" style="display:none;">
<link rel="stylesheet" type="text/css" href="/datatables/dt-1.10.9,r-1.0.7_datatables.min.css"/>
<script type="text/javascript" src="/datatables/dt-1.10.9,r-1.0.7_datatables.min.js"></script>
<table class="search-results" id='my-search-results'>
<thead>
<tr>
<th>Restaurant Name</th>
<th>Price</th>
<th class="hidden">area</th>
<th class="hidden">neighborhood</th>
<th class="hidden">cuisines</th>
<th class="hidden">order_online</th>
</tr>
</thead>
<tbody>
<tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/milano-market/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "7116"'>Milano Market</a> Deli Food, Sandwiches<br/> 2892 Broadway | Btwn 112th & 113th St </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>deli, sandwiches</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/massawa/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "17586"'>Massawa</a> Ethiopian, African<br/> 1239 Amsterdam Ave | At 121st St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/24697?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "17586"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>ethiopian, african</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/china-place/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "18020"'>China Place</a> Chinese, Japanese, Sushi<br/> 3141 Broadway | Btwn Tiemann Pl & La Salle St </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>chinese, japanese, sushi</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/subsconscious/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "18297"'>Subsconscious</a> Cheesesteaks, Deli Food, Sandwiches, Salads<br/> 1213 Amsterdam Ave | Btwn 119th & 120th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/260684?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "18297"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>cheese-steaks, deli, sandwiches, salads</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/famous-famiglia-5/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "18662"'>Famous Famiglia</a> Italian, Pizza<br/> 2859 Broadway | At 111th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/66387?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "18662"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>italian, pizza</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/kitchenette/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "18823"'>Kitchenette</a> Bakery & Pastries, American, Desserts<br/> 1272 Amsterdam Ave | At 122nd St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/267149?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "18823"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>bakery-pastries, american, desserts</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/v-t-pizza/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "18854"'>V & T Pizza</a> Italian, Pizza<br/> 1024 Amsterdam Ave | Btwn 110th & 111th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/263773?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "18854"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>italian, pizza</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/new-aroma/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "47426"'>New Aroma</a> Chinese<br/> 465 W 125th St | Btwn Morningside & Amsterdam Ave </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>chinese</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/peking-garden/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48702"'>Peking Garden</a> Chinese<br/> 3163 Broadway | Btwn 124th & 125th St </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>chinese</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/toms-restaurant-2/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48704"'>Tom's Restaurant</a> Diner<br/> 2880 Broadway | At 112th St </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>diner</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/pisticci/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48706"'>Pisticci</a> Italian<br/> 125 La Salle St | Btwn Broadway & Claremont Ave </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>italian</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/deluxe/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48710"'>Deluxe</a> Diner, American<br/> 2896 Broadway | Btwn 112th & 113th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/2422?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "48710"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>diner, american</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/toast/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48713"'>Toast</a> American, Bar Food<br/> 3157 Broadway | Btwn Tiemann Pl & La Salle St </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>american, bar-food</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/toms-delicious-pizza/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48714"'>Tom's Delicious Pizza</a> Italian, Pizza<br/> 3161 Broadway | Btwn Lasalle & Tiemann Pl <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/66485?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "48714"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>italian, pizza</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/west-place/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48764"'>West Place</a> Chinese<br/> 1288 Amsterdam Ave | Btwn 123rd & LaSalle St </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>chinese</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/che-bella-pizza/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48765"'>Che' Bella Pizza</a> Italian, Pizza<br/> 1215 Amsterdam Ave | Btwn 119th & 120th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/261047?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "48765"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>italian, pizza</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/ajanta/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48771"'>Ajanta</a> Indian<br/> 1237 Amsterdam Ave | Btwn 120th & 121st St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/66330?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "48771"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>indian</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/panino-sportivo-roma/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48772"'>Panino Sportivo Roma</a> Italian, Coffee & Tea, Sandwiches<br/> 1231 Amsterdam Ave | Btwn 120th & 121st St </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>italian, coffee-tea, sandwiches</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/max-soha/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48782"'>Max Soha</a> Italian<br/> 1274 Amsterdam Ave | At 123rd St </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>italian</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/strokos-pizza/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48810"'>Strokos Pizza</a> Deli Food, Pizza, Sandwiches, Chicken<br/> 1090 Amsterdam Ave | At 114th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/284424?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "48810"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price3">3</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>deli, pizza, sandwiches, chicken</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/camilles/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48811"'>Camille's</a> American<br/> 1135 Amsterdam Ave | At 116th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/304834?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "48811"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>american</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/amsterdam-restaurant/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48816"'>Amsterdam Restaurant</a> American (New), Tapas<br/> 1207 Amsterdam Ave | Btwn 119th & 120th St </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>american-new, tapas</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/nussbaum-wu/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48856"'>Nussbaum & Wu</a> Deli Food, Sandwiches, Bagels, Salads<br/> 2897 Broadway | At 113th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/264262?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "48856"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>deli, sandwiches, bagels, salads</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/amirs-falafel/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48858"'>Amir's Grill</a> Middle Eastern<br/> 2911 Broadway | Btwn 113th & 114th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/274793?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "48858"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>middle-eastern</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/m2m-morning-to-midnight/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48859"'>M2M - Morning To Midnight</a> Japanese, Sushi, Deli Food, Sandwiches<br/> 2935 Broadway | Btwn 114th & 115th St </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>japanese, sushi, deli, sandwiches</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/the-mill/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48869"'>The Mill</a> Korean<br/> 2895 Broadway | At 113th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/291094?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "48869"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>korean</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/le-monde/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "48895"'>Le Monde</a> French, Bistro<br/> 2885 Broadway | Btwn 112th & 113th St </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>french, bistro</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/melbas/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "49084"'>Melba's</a> American (New), Soul Food<br/> 300 W 114th St | At Frederick Douglass Blvd <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/305207?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "49084"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>american-new, soul-food</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/chuck-e-cheeses-4/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "64407"'>Chuck E Cheese's</a> Pizza, American<br/> 280 St Nicholas Ave | At 124th St </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>pizza, american</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/haagen-dazs-5/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "232674"'>Haagen-Dazs</a> Desserts<br/> 2905 Broadway | Btwn 113th & 114th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/309443?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "232674"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>desserts</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/orens-9/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "249497"'>Oren's</a> Coffee & Tea, Sandwiches<br/> 2882 Broadway | Btwn 112th & 113th St </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>coffee-tea, sandwiches</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/dinosaur-bar-b-que/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "252863"'>Dinosaur Bar-B-Que</a> Barbecue, Soul Food<br/> 700 W 125th St | At Riverside Dr <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/262149?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "252863"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price3">3</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>barbecue, soul-food</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/symposium-greek-restaurant/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "259650"'>Symposium Greek Restaurant</a> Greek, Vegetarian<br/> 544 W 113th St | Btwn Broadway & Amsterdam Ave <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/316959?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "259650"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>greek, vegetarian</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/koronet-pizza/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "259651"'>Koronet Pizza</a> Pizza<br/> 2848 Broadway | Btwn 110th & 111th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/304074?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "259651"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>pizza</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/the-heights-bar-grill/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "260320"'>The Heights Bar & Grill</a> Southwestern, Tapas, Bar Food<br/> 2867 Broadway | Btwn 111th & 112th St </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>southwestern, tapas, bar-food</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/cafe-nana/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "260321"'>Cafe Nana</a> Middle Eastern, Kosher<br/> 606 W 115th St | Btwn Broadway & Riverside Dr <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/305026?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "260321"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>middle-eastern, kosher</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/hamilton-deli/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "271631"'>Hamilton Deli</a> Deli Food, Sandwiches<br/> 1129 Amsterdam Ave | Btwn 115th & 116th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/263574?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "271631"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>deli, sandwiches</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/community-food-juice/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "272490"'>Community Food & Juice</a> American (New), Smoothies & Juices, Vegetarian, Healthy, Local/Organic<br/> 2893 Broadway | Btwn 112th & 113th St </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>american-new, smoothies-juices, vegetarian, healthy, localorganic</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/haakons-hall/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "280232"'>Haakon's Hall</a> American, Scandinavian<br/> 1187 Amsterdam Ave | Btwn 118th & 119th St </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>american, scandinavian</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/el-porton/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "285753"'>El Porton</a> Mexican<br/> 3151 Broadway | Btwn La Salle St & Tiemann Pl <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/259315?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "285753"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td>mexican</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/brads/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "295238"'>Brad's</a> Coffee & Tea<br/> 2920 Broadway | At 115th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/261868?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "295238"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>coffee-tea</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/mels-burger-bar/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "295701"'>Mel's Burger Bar</a> Burgers, Bar Food<br/> 2850 Broadway | Btwn 110th & 111th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/320935?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "295701"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>burgers, bar-food</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/bettolona/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "296507"'>Bettolona</a> Italian, Pizza, Local/Organic<br/> 3143 Broadway | Btwn La Salle St & Tiemann Pl <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/81941?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "296507"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>italian, pizza, localorganic</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/five-guys-9/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "303538"'>Five Guys</a> Burgers, Hot Dogs<br/> 2847 Broadway | Btwn 110th & 111th St </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>burgers, hot-dogs</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/nikko/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "305919"'>Nikko</a> Chinese, Japanese, Sushi, Teahouses<br/> 1280 Amsterdam Ave | At 123rd St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/264367?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "305919"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>chinese, japanese, sushi, teahouses</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/falafel-on-broadway/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "308682"'>Falafel on Broadway</a> Middle Eastern<br/> 3151 Broadway | Btwn Tiemann Pl & Lasalle St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/274644?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "308682"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>middle-eastern</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/sushi-sushi/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "333625"'>Sushi Sushi</a> Japanese, Sushi<br/> 54 Tiemann Pl | Btwn Claremont Ave & Broadway <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/278462?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "333625"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>japanese, sushi</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/insomnia-cookies-7/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "342143"'>Insomnia Cookies</a> Bakery & Pastries, Desserts<br/> 1028 Amsterdam Ave | Btwn 110th & 111th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/298599?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "342143"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>bakery-pastries, desserts</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/cafe-amrita/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "349820"'>Cafe Amrita</a> Coffee & Tea, Sandwiches<br/> 301 W 110th St | At 8th Ave </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>coffee-tea, sandwiches</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/pinkberry-16/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "351970"'>Pinkberry</a> Desserts<br/> 2873 Broadway | Btwn 111th & 112th St </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>desserts</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/artopolis-espresso-cafe/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "352331"'>Artopolis Espresso Cafe</a> Coffee & Tea, Sandwiches, Crepes<br/> 1090 Amsterdam Ave | Btwn 113th & 114th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/287218?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "352331"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>coffee-tea, sandwiches, crepes</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/max-caffe/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "353769"'>Max Caffe</a> Coffee & Tea, Sandwiches<br/> 1262 Amsterdam Ave | Btwn 122nd & 123rd St </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>coffee-tea, sandwiches</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/chipotle-27/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "354422"'>Chipotle</a> Mexican<br/> 2843 Broadway | At 110th St </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>mexican</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/chokolat-patisserie/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "357182"'>Chokolat Patisserie</a> Bakery & Pastries, Desserts<br/> 3111 Broadway | Btwn 123rd & La Salle St </td> <td class="price"> <span class="price5">5</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>bakery-pastries, desserts</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/chokolat-patisserie-2/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "357467"'>Chokolat Patisserie</a> Bakery & Pastries, Coffee & Tea, Desserts<br/> 3187 Broadway | Btwn Tiemann Pl & 125th St </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>bakery-pastries, coffee-tea, desserts</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/joes-g-h-deli/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "359466"'>Joe's G-H Deli</a> Deli Food, Sandwiches<br/> 3161 Broadway | Btwn Tiemann Pl & La Salle St </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>deli, sandwiches</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/joe-the-art-of-coffee-5/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "359503"'>Joe the Art of Coffee</a> Coffee & Tea<br/> 550 W 120th St | Btwn Amsterdam Ave & Broadway </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>coffee-tea</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/levain-bakery-2/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "359984"'>Levain Bakery</a> Bakery & Pastries, Desserts<br/> 2167 Frederick Douglas Blvd | Btwn 116th & 117th St </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>bakery-pastries, desserts</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/silvana/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "360444"'>Silvana</a> Middle Eastern, Vegetarian<br/> 300 W 116th St | At Fredrick Douglass Blvd <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/288774?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "360444"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>middle-eastern, vegetarian</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/bier-international/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "360644"'>Bier International</a> German, Eclectic & International, Bar Food<br/> 2099 Frederick Douglass Blvd | Btwn 113th & 114th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/289506?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "360644"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>german, eclectic, bar-food</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/vegenation/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "360860"'>Vegenation</a> Indian, Vegetarian<br/> 115th St & Broadway </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>indian, vegetarian</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/flat-top/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "361028"'>Flat Top</a> American (New), Bistro<br/> 1241 Amsterdam Ave | At 121st St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/316719?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "361028"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price4">4</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>american-new, bistro</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/kuro-kuma/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "363009"'>Kuro Kuma</a> Coffee & Tea<br/> 3139 Broadway | At La Salle St </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>coffee-tea</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/vinateria/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "364075"'>Vinateria</a> American (New)<br/> 2221 Frederick Douglass Blvd | At 119th St </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>american-new</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/henan-cart/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "366197"'>Henan Cart</a> Chinese<br/> W 115th St | At Broadway </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>chinese</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/vine/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "367497"'>Vine</a> Japanese, Sushi, Thai<br/> 2953 Broadway | Btwn 115th & 116th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/293742?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "367497"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>japanese, sushi, thai</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/el-paso-truck/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "373592"'>El Paso Truck</a> Mexican<br/> Location Varies </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>mexican</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/mamas-fried-chicken-and-pizza/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "385035"'>Mama's Fried Chicken and Pizza</a> Pizza, Chicken<br/> 2158 Frederick Douglas Blvd | Btwn W 116th & W 117th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/314159?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "385035"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>pizza, chicken</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/chapati-house/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "385052"'>Chapati House</a> Indian<br/> 3153 Broadway | Btwn Tiemann Pl & La Salle St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/288817?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "385052"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>indian</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/dig-inn-seasonal-market-7/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "386888"'>Dig Inn Seasonal Market</a> American, Local/Organic<br/> 2884 Broadway | Btwn 112th & 113th St </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>american, localorganic</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/uncle-luoyang/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "389189"'>Uncle Luoyang</a> Chinese<br/> 3010 Broadway | At W 119th St </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>chinese</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/pita-grill-10/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "389453"'>Pita Grill</a> Middle Eastern<br/> 1028 Amsterdam Ave | Btwn W 110th & W 111th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/291068?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "389453"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>middle-eastern</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/kissaten-jin/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "395723"'>Kissaten Jin</a> Japanese<br/> 3187 Broadway | At Tiemann Pl </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>japanese</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/serengeti-teas-spices/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "396021"'>Serengeti Teas & Spices</a> Coffee & Tea, Teahouses<br/> 2292 Frederick Douglass Blvd | Btwn 123rd & 124th St </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>coffee-tea, teahouses</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/lighthouse-fish-market-restaurant/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "424341"'>Lighthouse Fish Market & Restaurant</a> Seafood, Wings, Fish & Chips<br/> 2451 Frederick Douglas Blvd | Btwn 131st & 133rd St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/296959?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "424341"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price3">3</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>seafood, wings, fish--chips</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/lolos-seafood-shack/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "433793"'>Lolo's Seafood Shack</a> Seafood<br/> 303 W 116th St | Btwn Manhattan Ave & Frederick Douglass Blvd <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/299281?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "433793"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>seafood</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/harmony/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "434620"'>Harmony</a> Sandwiches, Salads, Teahouses<br/> 390 Manhattan Ave | Btwn 116th & 117th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/299338?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "434620"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price1">1</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>sandwiches, salads, teahouses</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/bernheim-schwartz/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "475421"'>Bernheim & Schwartz</a> American, Gastropub<br/> 2911 Broadway | Btwn W 113th & 114th St <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/303868?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "475421"'>Order From This Restaurant</a></div> </td> <td class="price"> <span class="price2">2</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>american, gastropub</td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/bth-restaurant-lounge/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "477304"'>BTH (By The Hudson)</a> American (New)<br/> 712 W 125th St | At Henry Hudson Pkwy </td> <td class="price"> <span class="price3">3</span> </td> <td>uptown</td> <td>morningside-heights</td> <td>american-new</td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/empanadas-monumental-4/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "485444"'>Empanadas Monumental</a> 1344 Amsterdam Ave <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/309538?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "485444"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td></td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/friedmans-3/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "486129"'>Friedman's</a> 1187 Amsterdam Ave <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/309656?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "486129"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td></td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/176-presbyterian-deli/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "490267"'>176 Presbyterian Deli</a> 1317 St Nicholas Ave <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/314765?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "490267"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td></td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/nacho-mamas-2/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "490608"'>Nacho Mama's</a> 1268 Amsterdam Ave <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/315749?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "490608"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td></td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/streetbird-rotisserie/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "490701"'>Streetbird Rotisserie</a> 2149 Frederick Douglass Blvd <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/315939?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "490701"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td></td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/colum-chinese-restaurant/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "490957"'>Colum Chinese Restaurant</a> 1034 Amsterdam Ave <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/316232?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "490957"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td></td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/flacoz-tacoz-2/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "496904"'>Flacoz Tacoz</a> 1028 Amsterdam Ave <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/320600?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "496904"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td></td> <td>1</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/sweetgreen-49/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "497909"'>sweetgreen</a> 2937 Broadway </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td></td> <td>0</td></tr><tr> <td class="name-address" scope="row"> <a class="link search_result_link" href='/restaurants/la-salle-dumpling-room/' data-clickstream="" data-cs-fires-on-click-link="clicked_searchresults" data-cs-with-property-text='masterlistid: "498418"'>La Salle Dumpling Room</a> 3141 Broadway <div class="seamless-order-url_from_search_results"><a href="https://www.seamless.com/r/a/1124/menu/menupages/321304?utm_source=menupages.com&utm_medium=referral&utm_campaign=order%20online" onclick="_gaq.push(['_trackEvent', 'Partner Link Clicks_Seamless', 'click_Search Results', '']);" target="_blank" class="seamless-order-url" data-clickstream="" data-cs-fires-on-click-link="clicked_seamless-order-url_from_search_results" data-cs-with-property-text='city: New York, masterlistid: "498418"'>Order From This Restaurant</a></div> </td> <td class="price"> N/A</td> <td>uptown</td> <td>morningside-heights</td> <td></td> <td>1</td></tr>
</tbody>
</table>
<script type="text/javascript">
$( document ).ready(function() {
var table = $('#my-search-results').dataTable({
"dom": 'liftp',
"iDisplayLength": 30,
aoColumnDefs: [{
aTargets: ['hidden'],
bVisible: false
}, {
aTargets: ['nosearch'],
bSearchable: false
}],
sPaginationType: 'full_numbers',
"order": [[ 5, "desc" ], [ 0, "asc" ]]
});
function attach_filter(tag_name, col_number) {
$('#' + tag_name + '_filters').on('change', function () {
var filter = [];
$('.'+ tag_name + '_filter').each(function (index, elem) {
if (elem.checked) filter.push($(elem).val());
});
// var filterString = filter.join('|');
var filterString;
if (filter.length > 0){
var filterString = filter.join('|');
// filterString = '.*?';
// for (var j = 0; j < filter.length; j++) {
// filterString += '(?=.*' + filter[j] + ')';
// }
// filterString += '.*$'
}
else {
filterString = '';
}
table.fnFilter(filterString, col_number, true, false, false, true);
});
}
attach_filter('cuisine', 4);
attach_filter('area', 2);
attach_filter('neighborhood', 3);
function collapse(tag_name, small_size){
size_li = $("#" + tag_name + "_filters li").size();
if (size_li > small_size) {
// $('#' + tag_name + '_filters li:lt('+small_size+')').show();
$('#' + tag_name + '_loadMore').click(function () {
x = $(this).prev().children().size();
// x= size_li;
$('#' + tag_name + '_filters li:lt('+x+')').show();
$('#' + tag_name + '_showLess').show();
$('#' + tag_name + '_loadMore').hide();
});
function show_less() {
x=small_size;
$("#" + tag_name + "_filters li").not(':lt('+x+')').hide();
$('#' + tag_name + '_loadMore').show();
$('#' + tag_name + '_showLess').hide();
}
$('#' + tag_name + '_showLess').click(function () {
// x=small_size;
// $("#" + tag_name + "_filters li").not(':lt('+x+')').hide();
// $('#' + tag_name + '_loadMore').show();
// $('#' + tag_name + '_showLess').hide();
show_less();
});
show_less();
} else {
$('#' + tag_name + '_showLess').hide();
$('#' + tag_name + '_loadMore').hide();
}
}
collapse('cuisine', 10);
collapse('area', 15);
collapse('neighborhood', 10);
$('#search-results-tables').show();
$('#searchresults').show();
});
</script>
</div><!-- end/.content -->
</div><!-- end/#content-primary -->
<div id="content-context">
<div class="module" id="cuisine_filters">
<div class="head">
<h5>Cuisine</h5>
</div><!-- end/.head -->
<div class="content">
<ul>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="sandwiches" />Sandwiches<i>(13)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="coffee-tea" />Coffee & Tea<i>(10)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="pizza" />Pizza<i>(9)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="italian" />Italian<i>(8)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="american" />American<i>(8)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="deli" />Deli Food<i>(7)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="desserts" />Desserts<i>(7)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="chinese" />Chinese<i>(7)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="japanese" />Japanese<i>(6)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="american-new" />American (New)<i>(6)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="bakery-pastries" />Bakery & Pastries<i>(5)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="sushi" />Sushi<i>(5)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="middle-eastern" />Middle Eastern<i>(5)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="vegetarian" />Vegetarian<i>(4)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="bar-food" />Bar Food<i>(4)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="indian" />Indian<i>(3)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="salads" />Salads<i>(3)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="localorganic" />Local/Organic<i>(3)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="mexican" />Mexican<i>(3)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="teahouses" />Teahouses<i>(3)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="tapas" />Tapas<i>(2)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="soul-food" />Soul Food<i>(2)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="seafood" />Seafood<i>(2)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="bistro" />Bistro<i>(2)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="burgers" />Burgers<i>(2)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="chicken" />Chicken<i>(2)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="diner" />Diner<i>(2)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="eclectic" />Eclectic & International<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="ethiopian" />Ethiopian<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="fish--chips" />Fish & Chips<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="french" />French<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="gastropub" />Gastropub<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="german" />German<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="greek" />Greek<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="healthy" />Healthy<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="hot-dogs" />Hot Dogs<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="african" />African<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="cheese-steaks" />Cheesesteaks<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="barbecue" />Barbecue<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="bagels" />Bagels<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="smoothies-juices" />Smoothies & Juices<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="scandinavian" />Scandinavian<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="crepes" />Crepes<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="korean" />Korean<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="kosher" />Kosher<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="southwestern" />Southwestern<i>(1)</i></label>
</li>
<li>
<label>
<input type="checkbox" class="cuisine_filter" value="thai" />Thai<i>(1)</i></label>
</li>
<li>