-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsnapdeal.txt
6500 lines (6351 loc) · 394 KB
/
snapdeal.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# snapdeallog: http://ogp.me/ns/fb/snapdeallog#">
<link rel="dns-prefetch" href="http://i1.sdlcdn.com" />
<link rel="dns-prefetch" href="http://i2.sdlcdn.com" />
<link rel="dns-prefetch" href="http://i3.sdlcdn.com" />
<link rel="dns-prefetch" href="http://i4.sdlcdn.com" />
<link rel="dns-prefetch" href="http://n1.sdlcdn.com" />
<link rel="dns-prefetch" href="http://n2.sdlcdn.com" />
<link rel="dns-prefetch" href="http://n3.sdlcdn.com" />
<link rel="dns-prefetch" href="http://n4.sdlcdn.com" />
<link type="application/opensearchdescription+xml" rel="search" href="http://www.snapdeal.com/opensearch.xml"/>
<link rel="publisher" href="https://plus.google.com/+snapdeal"/>
<link rel="alternate" media="handheld" href="http://m.snapdeal.com/search"/>
<link rel="alternate" href="http://www.snapdeal.com/hi/search" hreflang="hi" />
<link rel="alternate" href="http://www.snapdeal.com/ta/search" hreflang="ta" />
<link rel="alternate" href="http://www.snapdeal.com/search" hreflang="en" />
<link rel="alternate" href="http://www.snapdeal.com/search" hreflang="x-default" />
<meta name="msvalidate.01" content="C3D2C75EC8D7389BDB21FE494808B39D" />
<meta name="y_key" content="b8b20c3f440781c8" />
<meta name="format-detection" content="telephone=no" />
<link href="http://i4.sdlcdn.com/css/q3p4d1s26/metroUILess/final/base.css" rel="stylesheet" type="text/css" />
<script>
var startTime = new Date().getTime();
var loadingTime = 0; var env = 'prod';
var staticRes = '';
var ajaxRes = '';
var httpPath = 'http://www.snapdeal.com';
var absoluteHttpPath = 'http://www.snapdeal.com';
if (typeof Snapdeal == 'undefined') {Snapdeal = {};};
var https='443';
window.sdHttpPath = 'http://www.snapdeal.com';
var abVersion=6;
var abEnabled=true;
var abExpireDay=7;
var serverName='avatar-i-e9f76f25.snapdeal.com';
var fbPermissions='email,user_birthday,user_likes,user_hometown,user_location';
var fbFields='email,birthday,likes,hometown,location';
var fbAuthRequest='&auth_type=rerequest';
var fbAppId="689277371113314";
</script>
<script type="text/javascript">
var langSpecificLabels = new Array();
langSpecificLabels['label.searchBar.defaultString'] = "Search for a brand, product or specific item";
langSpecificLabels['label.searchBar.allCategories'] = "All Categories";
langSpecificLabels['label.categoryPage.codAvailable'] = "Cash on Delivery Available";
langSpecificLabels['label.categoryPage.dispatchedInOneBusinessDay'] = "Dispatched in 1 business day";
langSpecificLabels['label.categoryPage.quickView'] = "Quick View";
langSpecificLabels['label.categoryPage.freebie'] = "Freebie";
langSpecificLabels['label.categoryPage.highlights'] = "Highlights";
langSpecificLabels['label.categoryPage.listViewDetails'] = "View Detail";
langSpecificLabels['label.categoryPage.addToCompare'] = "Add to Compare";
langSpecificLabels['label.categoryPage.dispatchedInMoreBusinessDays1'] = "Dispatched in";
langSpecificLabels['label.categoryPage.dispatchedInMoreBusinessDays2'] = "business ";
langSpecificLabels['label.categoryPage.dispatchedInMoreBusinessDays3'] = "days";
langSpecificLabels['label.categoryPage.listBuyBtn'] = "Buy";
langSpecificLabels["label.categoryPage.emiAvailable"] = "EMI Available";
langSpecificLabels["label.categoryPage.addToWishlist"] = "Shortlist";
langSpecificLabels["label.categoryPage.addedToWishlist"] = "Added";
langSpecificLabels["label.categoryPage.listSoldOut"] = "SOLD OUT";
langSpecificLabels["label.categoryPage.removeFromWishlist"] = "Remove from Shortlist";
langSpecificLabels["label.categoryPage.soldOut"] = "SOLD OUT";
langSpecificLabels["label.listPage.addToWishlist"] = "Shortlist";
langSpecificLabels["label.productStatus.comingSoon"] = "COMING SOON";
langSpecificLabels["label.productStatus.discontinued"] = "DISCONTINUED";
langSpecificLabels["label.productStatus.notAvailableAtTheMoment"] = "NOT AVAILABLE AT THE MOMENT";
langSpecificLabels["label.categoryPageFilter.clearAll"] = "Clear All Filters";
var showOnloadFlag = parseInt("0");
/** 0 : Don't Show ,1 : Show only to new users ,2 : Show to all not logged */
if(typeof Snapdeal == "undefined")
Snapdeal = {};
// Set the configuration here for signupwidget
Snapdeal.signupWidConfig = {
onloadShowOnlyIfNewUser : showOnloadFlag == 1 ,
onloadShow : showOnloadFlag != 0 ,
cookieName : "snapdeal" ,
cookieNameFirstTime : "firstTimeVisit" ,
loggedIn : false ,
forceManual : false ,
targetUrl : "/search" ,
// Currently the code used in prod -- now used when no promo is sent
regMsgCode : 103 ,
// Code when promo is sent on social signup
socialMsgCode : 1110 ,
// Code when promo is sent on normal signup
hasCouponMsgCode : 1112
};
// Google Ads related code -- required so that gpt.js can be lazy loaded
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
// switches for various external components
Snapdeal = window.Snapdeal || {};
Snapdeal.componentSwitches = {};
Snapdeal.componentSwitches.searchClosed = "false";
Snapdeal.componentSwitches.recSysClosed = "false";
Snapdeal.componentSwitches.scoreClosed = "false";
Snapdeal.componentSwitches.promoClosed = "false";
Snapdeal.componentSwitches.cocofsClosed = "false";
Snapdeal.componentSwitches.facebookClosed = "false";
Snapdeal.componentSwitches.zendeskClosed = "false";
Snapdeal.componentSwitches.autoSuggestClosed = "false";
Snapdeal.componentSwitches.ebayClosed = "false";
// switch for quick buy button
var disableQuickBuy = "true";
</script>
<script type="text/javascript">
var emi3MonthHoverJS = parseInt("3000",10);
var reglobeUrl = "snapdeal.reglobe.in";
var reglobeEnv = "PROD";
if(navigator.appVersion.indexOf("Win")< 0){
document.write('<link rel="stylesheet" type="text/css" href="http://i2.sdlcdn.com/css/q3p4d1s26/metroUI/font.css">');
}
</script>
<title>Mobiles: Mobile Phones with Lowest Prices in India - Shop Online | Snapdeal
</title>
<link href="http://i3.sdlcdn.com/css/q3p4d1s26/metroUILess/final/productDeals.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="http://i3.sdlcdn.com/img/icons/favicon.ico" type="image/x-icon" />
<link rel=icon type=image/ico href="http://i3.sdlcdn.com/img/icons/favicon.ico" />
<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="http://i1.sdlcdn.com/css/q3p4d1s26/metroUI/ie8.css" />
<![endif]-->
<link rel="canonical" href="http://www.snapdeal.com/products/mobiles-mobile-phones" />
<link rel="next" href="/products/mobiles-mobile-phones?sort=rlvncy&omnPage=search&clcksrc=suggested&start=20" />
<meta name="description" content="Online mobile store for branded mobile phones at best prices in India. Check prices & user reviews. Shop for mobiles under 10,000, 15,000, 20,000 & more.
" />
<meta name="keywords" content="Mobiles, Mobile Phones, Mobile Store, Mobile Shopping, Mobile Prices, Mobiles in India
" />
<meta name="robots" content="follow, index" />
<meta name="twitter:card" content="app">
<meta name="twitter:app:country" content="IN"/>
<meta name="twitter:app:name:iphone" content="Snapdeal"/>
<meta name="twitter:app:id:iphone" content="721124909"/>
<meta name="twitter:app:name:ipad" content="Snapdeal"/>
<meta name="twitter:app:id:ipad" content="721124909"/>
<meta name="twitter:app:name:googleplay" content="Snapdeal"/>
<meta name="twitter:app:id:googleplay" content="com.snapdeal.main"/>
<meta name="twitter:app:url:iphone" content="snapdeal://m.snapdeal.com/products/175">
<meta name="twitter:app:url:ipad" content="snapdeal://m.snapdeal.com/products/175">
<meta name="twitter:app:url:googleplay" content="snapdeal://m.snapdeal.com/products/175">
<meta itemprop="priceCurrency" content="INR">
<meta charset="utf-8">
<!-- for IE9 -->
<meta http-equiv="X-UA-Compatible" content="IE=9" />
<!-- source tracking params -->
<input type="hidden" name ="utm_content" id="utm_content" value="" />
<input type="hidden" name ="ref" id="ref" value="" />
<input type="hidden" name ="utm_medium" id="utm_medium" value="" />
<input type="hidden" name ="utm_campaign" id="utm_campaign" value="" />
<input type="hidden" name ="utm_source" id="utm_source" value="SEO" />
<input type="hidden" name ="afcampaign_id" id="afcampaign_id" value="" />
<input type="hidden" name ="affiliate_id" id="affiliate_id" value="" />
<input type="hidden" name ="utm_term" id="utm_term" value="" />
<input type="hidden" name ="afcookie_id" id="afcookie_id" value="" />
<!-- End -->
</head>
<body class='listingPage'>
<header>
<input type="hidden" id="firstHit" u="firstHit" />
<div id="signin_box" style="background:transparent"></div>
<div class="pageOverlay activeTransModalOuter" id="cart-layout-div"></div>
<div id="initShowCart" style="display: none;"></div>
<div id="autoSuggestorVersion" style="display: none;">v2</div>
<div id="subscriptionOverlay" style="display:none"></div>
<div id="rightLangWrapper">
<div class="lang_switch_outer lazyBg" onclick="showLanguageModal()"></div>
</div>
<div class="pageOverlay" id="lang_modal_box">
<div class="lang_modal_cont sdModal">
<div class="closeWrapper localizationClose medium" onclick="hideLanguageModal()"><i class="icon-close"></i></div>
<div class="languageBanner"></div>
<div class="languageOuter">
<span class="cat-drop-dwn">
<span>Choose your Language : </span>
<div id="localization-modal-lang-chooser" class="langSelectDrop" style="cursor:pointer;width:108px;display:inline-block;">
<span id="sel-lang-modal" class="big-arrow" lang="">Select</span>
<div id="localization-modal-lang-drop" class="sd-droplist-outer rec-select-outer custom-rec langPopup">
<ul class="dropLang-select">
<li class="chooseLang" lang="hindi">हिन्दी</li>
<li class="chooseLang" lang="tamil">தமிழ்</li>
<li class="chooseLang" lang="en">English</li>
</ul>
</div>
</div>
<label class="error error-lang" style="display: none;">Please select a language.</label>
</span>
<div class="mar_20_top">
<div class="lfloat buttonBigBlueOuter">
<div><span><a class="buttonBigBlue" style="cursor:pointer;">SET MY LANGUAGE</a></span></div>
</div>
<div class="lfloat" style="margin-top:8px;"><a style="color:#2465A2;cursor:pointer;text-decoration: none;" onclick="hideLanguageModal()">I'll change it later</a></div>
</div>
<div class="clear"></div>
</div>
</div>
</div>
<div id="localizationHeader">
<div class="closeWrapper" id="close-localization-header"><i class="icon-close"></i></div>
<div class="pageWrapper">
<div class="lfloat">
<strong>View Snapdeal in:</strong>
<span class="fnt22 pad_10_all">हिंदी</span><span class="fnt22 pad_10_all">தமிழ்</span><span class="fnt22 pad_10_all">English</span>
</div>
<div id="chooseLangTxt">Choose your Language:</div>
<div id="dropLang-selectBox">
<div class="selectHeader">Select<span class="downArrow rfloat"></span></div>
<div id="lang-droplist">
<div class="setLang" lang="hindi">हिन्दी</div>
<div class="setLang" lang="tamil">தமிழ்</div>
<div class="setLang" lang="en">English</div>
</div>
</div>
<div class="clear"></div>
<div class="downArrow localizationArrow"></div>
</div>
</div>
<script type="text/javascript">
var isLocalizationEnabled = "true";
var localizationHeaderState = "1";
var selectedTab = "pc"
var activeProductTab = "";
var gpsf = false;
var partialSearch = 'false';
var openFlowFlag = 'true';
</script>
<div id="appDL_popup" style="display:none">
<div class="appDL_pageOverlay" onclick="closeAppPopup()"></div>
<div class="appDL_outerPane">
<div class="close_tip" onclick="closeAppPopup()"></div>
<div class="appDL_leftwrapper">
<div class="appDL_banner">
<a href="http://www.snapdeal.com/offers/mobile-app?MID=popup_appDownload" title="Download Mobile App" ><img class="app_banner_url" lazySrc="http://i2.sdlcdn.com/img/Download-Share.png"></a>
</div>
<div class="Platform_Container">
<a href="https://itunes.apple.com/in/app/snapdeal-mobile-shopping/id721124909?ls=1&mt=8&utm_source=mobileAppLp&utm_campaign=ios" title="Download Mobile App" target="_blank" ><span class="p_con_img lazyBg iphone" onclick="omniAppTrack('iPhone')">iPhone</span></a>
<a href="https://play.google.com/store/apps/details?id=com.snapdeal.main&utm_source=mobileAppLp&utm_campaign=android" title="Download Mobile App" target="_blank" ><span class="p_con_img lazyBg android" onclick="omniAppTrack('Android')">Android</span></a>
<a href="http://www.windowsphone.com/en-in/store/app/snapdeal/ee17fccf-40d0-4a59-80a3-04da47a5553f?utm_source=mobileAppLp&utm_campaign=windows" title="Download Mobile App" target="_blank" ><span class="p_con_img lazyBg windows" onclick="omniAppTrack('Windows')">Windows</span></a>
</div>
</div>
<div class="appDL_rightWrapper" >
<div style="margin: 45px 20px 20px;font-size: 21px;color: #fff;line-height: 25px;text-align: center;">Get an instant SMS with the Free App download link</div>
<div class="appmobile_Container lazyBg">
<div class="sms_Container">
<div id="sendSMSContainer">
<div class="appFormText heading">Enter Mobile Number</div>
<input class="mobileText" onfocus="this.placeholder = ''" onblur="this.placeholder = 'e.g. 98XXXXXXXX'" name="mobile" type="text" placeholder="e.g. 98XXXXXXXX" maxlength="10" style="text-align: center;"></input>
<div class="formErrorMsg lazyBg formMNumErrorMsg">Enter valid 10-digit number</div>
<div class="formErrorMsg lazyBg formGenericError">Error! Please try again.</div>
<input type="button" class="appFormSubmit" onclick="submitForm()" value="Send SMS">
</div>
<div class="appDL_Thanks">
<div class="appFormText heading">Thanks</div>
<div class="appFormText">You will receive an sms with download link shortly</div>
<input type="button" class="appFormSubmit closeForm" onclick="closeAppPopup()" value="Close">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fixed-header-slide">
<div id="headerFixed" class="hd-rvmp">
<div id="headerTop">
<div class="pageWrapper" align="right">
<a class="downloadApp red lazyBg" href="" title="Download Mobile App" onclick="downloadAppPopup(); return false;"><i class="iconHeader"></i>Download Mobile App</a>
<a class="trackOrder lazyBg" href="http://www.snapdeal.com/myorders" title="Track Order"><i class="iconHeader"></i>Track your Order</a>
<a class="contactusTop lazyBg" href="http://www.snapdeal.com/help"><i class="iconHeader"></i>Contact Us</a>
<a class="sellOnSnapdeal lazyBg" href="http://sellers.snapdeal.com/" title="Sell on Snapdeal"><i class="iconHeader"></i>Sell on Snapdeal</a>
<!--<a class="joinTheTeam lazyBg" href="http://www.snapdeal.com/info/aboutus" title="Join the Team"><i class="iconHeader"></i>Join the Team</a> -->
</div>
</div>
<div class="pageWrapper header">
<div class="leftWrapper">
<div class="logoSnapdeal" itemscope="" itemtype="" >
<a href="http://www.snapdeal.com" title="Snapdeal.com">
<img src="http://i3.sdlcdn.com/img/snapdeal/sprite/snapdeal_logo_v9.png" height="40px" width="200px" alt="Online Shopping India | Snapdeal.com" title="Online Shopping India | Snapdeal.com">
</a>
</div>
</div>
<div class="rightWrapper headerRightWrapper">
<div class="lfloat">
<form id="formSearch" name="formSearch" action="http://www.snapdeal.com/search" method="get">
<div id="searchBoxOuter" class="lfloat">
<input id="keyword" name="keyword" autocomplete="off" autofocus="autofocus" onfocus="this.value = this.value;" onkeypress="clickGo(event)"
type="text" placeholder="Search for a brand, product or specific item" value="samsung"/>
<input type="hidden" id="santizedKeyword" name="santizedKeyword" value=""/>
<input type="text" style="display:none;"/>
<input type="hidden" name="catId" id="catId" value="12" />
<input type="hidden" name="categoryId" id="categoryId" value="12" />
<input type="hidden" name="suggested" id="suggested" value="true" />
<input type="hidden" name="vertical" id="vertical" value="p" />
<input type="hidden" name="noOfResults" id="noOfResults" value="20" />
<input type="hidden" name="clickSrc" id="clickSrc" value="suggested" />
<input type="hidden" name="lastKeyword" id="lastKeyword" value="samsung"/>
<input type="hidden" name="prodCatId" id="prodCatId" value="175" />
<input type="hidden" name="changeBackToAll" id="changeBackToAll" value="false" />
<input type="hidden" name="foundInAll" id="foundInAll" value="false" />
<input type="hidden" name="categoryIdSearched" id="categoryIdSearched" value="" />
<input type="hidden" name="cityPageUrl" id="searchedCity" value="" />
<input type="hidden" id="url" name="url" value=""/>
<input type="hidden" id="utmContent" name="utmContent" value=""/>
<input type="hidden" id="catalogID" name="catalogID" value=""/>
<input type="hidden" id="dealDetail" name="dealDetail" value=""/>
</div>
<button type="button" class="dnm-button lfloat" id="searchBtn" onclick="submitSearchForm('go_header');">Search</button>
<div class="clear"></div>
</form>
<div id="topsearches" class="overhid">
<span class="lfloat">TOP SEARCHES :</span>
<a href="http://www.snapdeal.com/search?clickSrc=top_searches&keyword=Canvas Spark&categoryId=0&vertical=p&noOfResults=20" title="Canvas Spark">
Canvas Spark</a>
<a href="http://www.snapdeal.com/search?clickSrc=top_searches&keyword=Trimmer&categoryId=0&vertical=p&noOfResults=20" title="Trimmer">
Trimmer</a>
<a href="http://www.snapdeal.com/search?clickSrc=top_searches&keyword=Formal Shoes&categoryId=0&vertical=p&noOfResults=20" title="Formal Shoes">
Formal Shoes</a>
<a href="http://www.snapdeal.com/search?clickSrc=top_searches&keyword=SnapSearch&categoryId=0&vertical=p&noOfResults=20" title="SnapSearch">
SnapSearch</a>
<a href="http://www.snapdeal.com/search?clickSrc=top_searches&keyword=View More...&categoryId=0&vertical=p&noOfResults=20" title="View More...">
View More...</a>
</div>
<div class="searchAutoSuggstn"></div>
</div>
<div class="" style="float:right;">
<div class="sdNavWrapper" id="topOffersHeader">
<i class="iconHeader lazyBg offerIcon"></i>
<i class="mar_2_left right-downArrow breadcrumbArrow-down"></i>
<div class="topOffersHeaderDrop">
<div class="topOffersArw"></div>
<div class="left-outer-box">
</div>
</div>
</div>
<!--Login Block Begins-->
<div class="sdNavWrapper hd-rvmp-log">
<div id="loggedInAccount" class="hidden hd-rvmp-login">
<i class="icon-user"></i>
<div id="user-detail">
<label class="my-account-lang">
<span style="height:20px">Hi</span>
<span id="user-name"></span>
<i class="mar_2_left right-downArrow breadcrumbArrow-down"></i>
</label>
</div>
<div class="sdNavDropWrapper accDetails">
<ul class="positionAbsolute pull-right">
<li class="customLoggedInState">
<div class="left triangle"></div>
<div class="right triangle"></div>
<div>
<div class="userName" title="Guest">Guest</div>
<a href="http://www.snapdeal.com/myorders" class="accountLink">VIEW MY ACCOUNT ></a>
</div>
</li>
<li class="stop-event"><a href="http://www.snapdeal.com/myorders">ORDERS</a></li>
<li class="stop-event"><a href="http://www.snapdeal.com/mywishlist">PROFILE</a></li>
<li class="stop-event"><a href="http://www.snapdeal.com/myrecommendations">PREFERENCES</a></li>
<li class="stop-event"><a href="http://www.snapdeal.com/mysdcash">PAYMENTS</a></li>
<li><a href="http://www.snapdeal.com/logout" id="logout-account">SIGN OUT</a></li>
</ul>
</div>
</div>
<div id="loggedOutAccount" class="hd-rvmp-logout">
<a class="signIn" href="javascript:void(0);">
<i class="iconHeader accountUser lazyBg"></i>
<label class="my-account-lang">
My Account</label>
<i class="mar_2_left right-downArrow breadcrumbArrow-down"></i>
</a>
<div class="sdNavDropWrapper accDetails">
<ul class="positionAbsolute pull-right">
<li class="customLoggedInState">
<div class="left triangle"></div>
<div class="right triangle"></div>
<div>
<a href="javascript:void(0);" class="accountLink">Click here to sign in ></a>
</div>
</li>
<li class="stop-event"><a href="http://www.snapdeal.com/myorders">ORDERS</a></li>
<li class="stop-event"><a href="http://www.snapdeal.com/mywishlist">PROFILE</a></li>
<li class="stop-event"><a href="http://www.snapdeal.com/myrecommendations">PREFERENCES</a></li>
<li class="stop-event"><a href="http://www.snapdeal.com/mysdcash">PAYMENTS</a></li>
</ul>
</div>
</div>
</div>
<div class="sdNavWrapper" id="navCartWrapper">
<i class="iconHeader cartHeader lazyBg"></i>
<label class="my-cart-lang">Cart
<!-- My Cart-->
</label>
<div class="" id="cartItemQtyId">0</div>
</div>
</div>
<input type="hidden" id="uidField" name="trackingUid" value="0"/>
<input type="hidden" id="sharerEmail" name="sharerEmail" value="0"/>
<!-- Login Block Ends -->
</div>
<div class="clear"></div>
</div>
</div>
</div>
<div id="navBarWrapper" class="hd-rvmp">
<div class="pageWrapper navBar">
<div class="leftWrapper">
<div class="allCategoriesWrapper zIndex901 left-categories-head-down ">
<i class="icon-allCategories"></i>
<label class="see-all-categories-lang">See All Categories</label>
</div>
<div id="leftNavNemu" class="left-categories-cont-inactive">
<div class="leftNavSiteMapWrapper">
<div class="leftNavigationContainer">
<div id="leftNavNemu" u='getLeftNav?sT=pc&aT=' class="left-categories-head-inner">
<input type="hidden" name="catName" id="catName" value="Mobile Phones" />
<input type="hidden" name="catId" id="catId" value="175" />
<ul class="nav">
</ul>
</div>
</div>
<div class="seeFullSiteDiv">
<a class="somn-track seeFullSiteLink" hidOmnTrack="HID=leftnav_SeeAllCategory" href="http://www.snapdeal.com/page/sitemap"> See All Categories</a>
</div>
</div>
</div>
</div>
<div id="shoppingFeedHook" class="lfloat">
<div class="pageOverlay startPersonalisedTour" style="display:none;"></div>
<div class="shoppingFeed lazyBg"><i class="lazyBg iconHeader"></i> SMART FEED</div>
<div class="highlighter lazyBg" style="display:none;"></div>
<div class="popover" style="display:none;">
<div class="arrow"></div>
<i class="popover-title"></i>
<div class="popover-content">Finding products that you wanted is now more easier on Snapdeal.
<div class="clear"></div>
<div class="mar_10_top">
<div class="buyBlueButton"><a><label>lets check</label></a></div>
<div class="laterText rfloat">I'll check it later</div>
</div>
</div>
</div>
</div>
<div class="rightWrapper staticLinks force-wdt-auto" align="right">
<span><a href ='http://www.snapdeal.com/offers/home-flashsale?HookID=1'>Dream Home Fest </a></span><span><a href ='http://sellers.snapdeal.com/?HookID=2'>Sell on Snapdeal </a></span><span><a href ='http://www.snapdeal.com/offers/deal-of-the-day?HookID=3'>Deal of the Day </a></span>
</div>
<div class="clear"></div>
</div>
</div>
<div id="gutterPromotionContainer" class="gutterPromotionHiddenOnOtherPages">
<div id="hideGutterPromotion" class="closeWrapper close"><i class="icon-close"></i></div>
<a href="http://www.snapdeal.com/flash-sale/micromax/canvas-spark?&MID=GutterBanner_MicromaxCanvasSpark_Register" target="_blank">
<div id="gutterPromoImage"></div>
</a>
</div>
<script type="text/javascript">
var gutterPromoImageSource = "http://i2.sdlcdn.com/img/metroUI/header/gutterPromotion/Micromax_Gutter_Space_Apr22nd.jpg";
var currentGutterImageName = "Micromax_Gutter_Space_Apr22nd.jpg";
</script>
<!--[if IE 8]>
<script type="text/javascript">
//calculating screen width for ie8
var w = window;
d = document;
e = d.documentElement;
g = d.getElementsByTagName('body')[0];
window.viewportWidthForGutter = w.innerWidth || e.clientWidth || g.clientWidth;
if(window.viewportWidthForGutter>1269){
document.getElementById('gutterPromotionContainer').style.display = "block";
}
</script>
<![endif]--><script type="text/javascript">
window.fbLoginId = 689277371113314;
</script>
</header>
<!---->
<div id="content_wrapper">
<!-- Google DFP Ads Script started -->
<!-- Google DFP Ads Script ended -->
<div id="prodTypeId" class='hidden'>5</div>
<div id="isFromSearch" class='hidden'>true</div><div class='hidden'>
<input type="text" name="productDTO" value='[{"offers":[{"id":652456877954,"live":true,"supcs":["SDL021483758"],"images":["imgs/a/s/9/166x194/Samsung-Galaxy-Grand-Max-SDL021483758-1-9dcf3.jpg","imgs/a/t/e/166x194/White2-57e71.jpg","imgs/a/t/e/166x194/White3-be191.jpg","imgs/a/t/e/166x194/White4-2d127.jpg"]},{"id":659757096833,"live":true,"supcs":["SDL386918046"],"images":["imgs/a/t/b/166x194/Samsung-Galaxy-Grand-Max-SDL386918046-1-af513.jpg","imgs/a/t/e/166x194/Black2-c909d.jpg","imgs/a/t/e/166x194/Black3-fc75b.jpg","imgs/a/t/e/166x194/black4-89ac7.jpg"]},{"id":685076635889,"live":false,"supcs":["SDL211646394"],"images":["imgs/a/s/9/166x194/Samsung-Galaxy-Grand-Max-SDL211646394-1-b235d.jpg"]}],"initAttributesFull":[{"id":685076635889,"name":"Color","value":"Black","soldOut":true,"subAttributes":[],"catalogId":685076635889,"supc":"SDL211646394","live":false,"images":["imgs/a/s/9/Samsung-Galaxy-Grand-Max-SDL211646394-1-b235d.jpg"]},{"id":652456877954,"name":"Color","value":"White","soldOut":false,"subAttributes":[],"catalogId":652456877954,"supc":"SDL021483758","live":true,"images":["imgs/a/s/9/Samsung-Galaxy-Grand-Max-SDL021483758-1-9dcf3.jpg","imgs/a/t/e/White2-57e71.jpg","imgs/a/t/e/White3-be191.jpg","imgs/a/t/e/White4-2d127.jpg"]},{"id":659757096833,"name":"Color","value":"Grey","soldOut":false,"subAttributes":[],"catalogId":659757096833,"supc":"SDL386918046","live":true,"images":["imgs/a/t/b/Samsung-Galaxy-Grand-Max-SDL386918046-1-af513.jpg","imgs/a/t/e/Black2-c909d.jpg","imgs/a/t/e/Black3-fc75b.jpg","imgs/a/t/e/black4-89ac7.jpg"]}],"initAttributeType":"Color","highlights":["13.35 cm (5.25) HD Display "," 1.2 GHz Quad Processor Qualcomm "," 1.5 GB RAM and 16 GB ROM "," 13 MP Rear Camera and 5 MP Front "," Android v4.4(KitKat) Operating System "," 2500 mAh Battery "," Dual SIM Support "," 1 Year Brand Warranty"],"vendorCode":"Se5c3f","attributesUpdated":true,"id":647437791381,"image":"imgs/a/s/9/166x194/Samsung-Galaxy-Grand-Max-SDL021483758-1-9dcf3.jpg","price":18000,"voucherPrice":14990,"displayPrice":14990,"prebook":false,"discount":17,"pageUrl":"product/samsung-galaxy-grand-max/647437791381","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy Grand Max","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.2,"noOfReviews":3479,"externalCashBackApplicable":false,"shippingDays":1,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":706,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":2005556267,"live":true,"supcs":["SDL108484327"],"images":["imgs/a/r/3/166x194/Samsung-Galaxy-A5-SDL108484327-1-7dd0c.jpg"]},{"id":366139462,"live":true,"supcs":["SDL022708461"],"images":["imgs/a/r/3/166x194/Samsung-Galaxy-A5-SDL022708461-1-f416c.jpg"]},{"id":411886206,"live":true,"supcs":["SDL110547779"],"images":["imgs/a/r/3/166x194/Samsung-Galaxy-A5-SDL110547779-1-ca3d1.jpg"]},{"id":9894099,"live":true,"supcs":["SDL135295059"],"images":["imgs/a/r/3/166x194/Samsung-Galaxy-A5-SDL135295059-1-53a67.jpg"]}],"initAttributesFull":[{"id":366139462,"name":"Color","value":"Black","soldOut":false,"subAttributes":[],"catalogId":366139462,"supc":"SDL022708461","live":true,"images":["imgs/a/r/3/Samsung-Galaxy-A5-SDL022708461-1-f416c.jpg"]},{"id":9894099,"name":"Color","value":"White","soldOut":false,"subAttributes":[],"catalogId":9894099,"supc":"SDL135295059","live":true,"images":["imgs/a/r/3/Samsung-Galaxy-A5-SDL135295059-1-53a67.jpg"]},{"id":411886206,"name":"Color","value":"Silver","soldOut":true,"subAttributes":[],"catalogId":411886206,"supc":"SDL110547779","live":true,"images":["imgs/a/r/3/Samsung-Galaxy-A5-SDL110547779-1-ca3d1.jpg"]},{"id":2005556267,"name":"Color","value":"Gold","soldOut":false,"subAttributes":[],"catalogId":2005556267,"supc":"SDL108484327","live":true,"images":["imgs/a/r/3/Samsung-Galaxy-A5-SDL108484327-1-7dd0c.jpg"]}],"initAttributeType":"Color","highlights":["12.70 cm (5) HD Super AMOLED Touch Screen Display "," 1.2 GHz Quad Core Processor "," 2GB RAM and 16 GB ROM "," 13 MP Rear Camera and 5 MP Front "," 2300 MAh Battery "," 1 Year Brand Warranty"],"vendorCode":"cc5fdf","attributesUpdated":true,"id":16558352,"image":"imgs/a/r/3/166x194/Samsung-Galaxy-A5-SDL108484327-1-7dd0c.jpg","price":30000,"voucherPrice":22870,"displayPrice":22110,"prebook":false,"discount":26,"pageUrl":"product/samsung-galaxy-a5/16558352","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy A5","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":3.9,"noOfReviews":67,"externalCashBackApplicable":false,"shippingDays":2,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":1041,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":1203619737,"live":true,"supcs":["SDL133864808"],"images":["imgs/a/s/d/166x194/samsung-galaxy-core-prime-G630H-SDL133864808-1-d6569.jpg","imgs/a/s/d/166x194/samsung-galaxy-core-prime-G630H-SDL133864808-2-8f147.jpg","imgs/a/s/d/166x194/samsung-galaxy-core-prime-G630H-SDL133864808-3-182e5.jpg"]}],"initAttributesFull":[],"highlights":["11.43 cm (4.5) capacitive touchscreen "," 1.2 GHz Quad Core Processor "," 1 GB RAM and 8 GB ROM "," 5 MP Rear Camera and 2 MP Front "," MultiSim "," DUAL SIM "," FM Radio : Yes "," Battery Li-Ion 2000 mAh "," OS Version : ANDROID 4.4 KITKAT "," Wi-Fi : Wi-Fi 802.11 b/g/n, Wi-Fi Direct, hotspot "," 1 Year Brand Warranty"],"vendorCode":"S03123","attributesUpdated":true,"id":1821761930,"image":"imgs/a/s/d/166x194/samsung-galaxy-core-prime-G630H-SDL133864808-1-d6569.jpg","price":9900,"voucherPrice":9040,"displayPrice":8806,"prebook":false,"discount":11,"pageUrl":"product/samsung-galaxy-core-prime-g630h/1821761930","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy Core Prime G360H Charcoal Grey","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.1,"noOfReviews":196,"externalCashBackApplicable":false,"shippingDays":1,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":415,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":684660127570,"live":true,"supcs":["SDL029813270"],"images":["imgs/a/s/4/166x194/Samsung-Galaxy-E5-SDL029813270-1-9df7b.jpg","imgs/a/s/4/166x194/Samsung-Galaxy-E5-SDL029813270-2-e19fc.jpg"]},{"id":686445028064,"live":true,"supcs":["SDL161498544"],"images":["imgs/a/s/4/166x194/Samsung-Galaxy-E5-SDL161498544-1-bb8c3.jpg","imgs/a/s/4/166x194/Samsung-Galaxy-E5-SDL161498544-2-dd126.jpg"]}],"initAttributesFull":[{"id":686445028064,"name":"Color","value":"Black","soldOut":false,"subAttributes":[],"catalogId":686445028064,"supc":"SDL161498544","live":true,"images":["imgs/a/s/4/Samsung-Galaxy-E5-SDL161498544-1-bb8c3.jpg","imgs/a/s/4/Samsung-Galaxy-E5-SDL161498544-2-dd126.jpg"]},{"id":684660127570,"name":"Color","value":"White","soldOut":false,"subAttributes":[],"catalogId":684660127570,"supc":"SDL029813270","live":true,"images":["imgs/a/s/4/Samsung-Galaxy-E5-SDL029813270-1-9df7b.jpg","imgs/a/s/4/Samsung-Galaxy-E5-SDL029813270-2-e19fc.jpg"]}],"initAttributeType":"Color","highlights":["5 Inches HD Amoled Display "," 1.2 GHz Quad Core Processor "," 1.5 GB RAM and 16 GB ROM "," Android OS, v4.4.4 (KitKat) "," 8 MP Camera "," 2400 mAh Battery ","1 year Warranty"],"vendorCode":"S939dc","attributesUpdated":true,"id":655778241669,"image":"imgs/a/s/4/166x194/Samsung-Galaxy-E5-SDL029813270-1-9df7b.jpg","price":19990,"voucherPrice":16500,"displayPrice":15630,"prebook":false,"discount":22,"pageUrl":"product/samsung-galaxy-e5/655778241669","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy E5","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.1,"noOfReviews":26,"externalCashBackApplicable":false,"shippingDays":2,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":736,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":651007799388,"live":true,"supcs":["SDL323676065"],"images":["imgs/a/s/l/166x194/Samsung-Tizen-Z1-SDL323676065-1-83586.jpg","imgs/a/u/3/166x194/tizenz1-d409f.jpg"]},{"id":885055828,"live":true,"supcs":["SDL130144195"],"images":["imgs/a/s/f/166x194/Samsung-Tizen-Z1-SDL130144195-1-7e237.jpg","imgs/a/u/n/166x194/z3-02b63.jpg"]},{"id":999329954,"live":true,"supcs":["SDL115709274"],"images":["imgs/a/s/f/166x194/Samsung-Tizen-Z1-SDL115709274-1-63f65.jpg","imgs/a/u/3/166x194/tizen2-faa0d.jpg"]},{"id":1317873389,"live":true,"supcs":["SDL110359203"],"images":["imgs/a/s/f/166x194/Samsung-Tizen-Z1-SDL110359203-1-780da.jpg","imgs/a/u/4/166x194/dp1-7a3cb.jpg"]}],"initAttributesFull":[{"id":651007799388,"name":"Color","value":"Black","soldOut":false,"subAttributes":[],"catalogId":651007799388,"supc":"SDL323676065","live":true,"images":["imgs/a/s/l/Samsung-Tizen-Z1-SDL323676065-1-83586.jpg","imgs/a/u/3/tizenz1-d409f.jpg"]},{"id":885055828,"name":"Color","value":"White","soldOut":false,"subAttributes":[],"catalogId":885055828,"supc":"SDL130144195","live":true,"images":["imgs/a/s/f/Samsung-Tizen-Z1-SDL130144195-1-7e237.jpg","imgs/a/u/n/z3-02b63.jpg"]},{"id":1317873389,"name":"Color","value":"Blue","soldOut":true,"subAttributes":[],"catalogId":1317873389,"supc":"SDL110359203","live":true,"images":["imgs/a/s/f/Samsung-Tizen-Z1-SDL110359203-1-780da.jpg","imgs/a/u/4/dp1-7a3cb.jpg"]},{"id":999329954,"name":"Color","value":"Red","soldOut":false,"subAttributes":[],"catalogId":999329954,"supc":"SDL115709274","live":true,"images":["imgs/a/s/f/Samsung-Tizen-Z1-SDL115709274-1-63f65.jpg","imgs/a/u/3/tizen2-faa0d.jpg"]}],"initAttributeType":"Color","highlights":["10.16 cm (4) TFT Display "," 1.2 GHz Dual Core Processor "," 768 MB RAM and 4 GB ROM "," 3.1 MP Rear Camera and VGA Front "," 1500 mAh Battery "," Tizen 2.3 Operating System "," 1 Year Brand Warranty"],"vendorCode":"Se5c3f","attributesUpdated":true,"id":214936653,"image":"imgs/a/s/l/166x194/Samsung-Tizen-Z1-SDL323676065-1-83586.jpg","price":5990,"voucherPrice":4990,"displayPrice":4990,"prebook":false,"discount":17,"pageUrl":"product/samsung-tizen-z1/214936653","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Tizen Z1","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":3.4,"noOfReviews":172,"externalCashBackApplicable":false,"shippingDays":1,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"#034;labelName":"Mobile Phones","emi":235,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":670537271300,"live":true,"supcs":["SDL118646028"],"images":["imgs/a/s/4/166x194/Samsung-Galaxy-E7-SDL118646028-1-ce54f.jpg","imgs/a/s/4/166x194/Samsung-Galaxy-E7-SDL118646028-2-481fe.jpg"]},{"id":627657843166,"live":true,"supcs":["SDL086288492"],"images":["imgs/a/s/4/166x194/Samsung-Galaxy-E7-SDL086288492-1-b0241.jpg","imgs/a/s/4/166x194/Samsung-Galaxy-E7-SDL086288492-2-4b48b.jpg"]}],"initAttributesFull":[{"id":670537271300,"name":"Color","value":"Black","soldOut":false,"subAttributes":[],"catalogId":670537271300,"supc":"SDL118646028","live":true,"images":["imgs/a/s/4/Samsung-Galaxy-E7-SDL118646028-1-ce54f.jpg","imgs/a/s/4/Samsung-Galaxy-E7-SDL118646028-2-481fe.jpg"]},{"id":627657843166,"name":"Color","value":"White","soldOut":false,"subAttributes":[],"catalogId":627657843166,"supc":"SDL086288492","live":true,"images":["imgs/a/s/4/Samsung-Galaxy-E7-SDL086288492-1-b0241.jpg","imgs/a/s/4/Samsung-Galaxy-E7-SDL086288492-2-4b48b.jpg"]}],"initAttributeType":"Color","highlights":["5.5 Inches HD Amoled Display "," 1.2 GHz Quad Core Processor "," 2x\u0027 GB RAM and 16 GB ROM "," Android OS, v4.4.4 (KitKat) "," 13 MP Camera "," 2950 mAh Battery","1 year Warranty"],"vendorCode":"S46128","attributesUpdated":true,"id":685897527463,"image":"imgs/a/s/4/166x194/Samsung-Galaxy-E7-SDL118646028-1-ce54f.jpg","price":19400,"voucherPrice":19259,"displayPrice":18740,"prebook":false,"discount":3,"pageUrl":"product/samsung-galaxy-e7/685897527463","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy E7","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.7,"noOfReviews":52,"externalCashBackApplicable":false,"shippingDays":2,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":882,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":703574442,"live":true,"supcs":["SDL239505271"],"images":["imgs/a/o/6/166x194/Samsung-Galaxy-Grand-Prime-Grey-SDL239505271-1-5b973.jpg"]}],"initAttributesFull":[],"highlights":["12.70 cm (5) Display "," 1.2 GHz Cortex-A53 Quadcore processor "," 1 GB RAM and 8 GB ROM "," 8 MP Rear and 5 MP Front "," MultiSim "," Dual Sim "," Os Version : Android OS, v4.4.2 (KitKat) "," Wi-Fi : Wi-Fi 802.11 b/g/n, Wi-Fi Direct, Wi-Fi hotspot "," Battery Li-Ion 2600 mAh battery "," 1 Year Brand Warranty"],"vendorCode":"S796fb","attributesUpdated":true,"id":1790143822,"image":"imgs/a/o/6/166x194/Samsung-Galaxy-Grand-Prime-Grey-SDL239505271-1-5b973.jpg","price":15999,"voucherPrice":13274,"displayPrice":13074,"prebook":false,"discount":18,"pageUrl":"product/samsung-galaxy-grand-prime-grey/1790143822","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy Grand Prime Grey","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.2,"noOfReviews":432,"externalCashBackApplicable":false,"shippingDays":1,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":615,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":1201481090,"live":true,"supcs":["SDL168340026"],"images":["imgs/a/m/4/166x194/Samsung-Galaxy-S-Duos-3-SDL168340026-1-e46b3.jpg","imgs/a/m/4/166x194/Samsung-Galaxy-S-Duos-3-SDL168340026-2-daa3d.jpg","imgs/a/m/4/166x194/Samsung-Galaxy-S-Duos-3-SDL168340026-3-a694b.jpg","imgs/a/m/4/166x194/Samsung-Galaxy-S-Duos-3-SDL168340026-4-058f0.jpg"]}],"initAttributesFull":[],"highlights":["10.16 cm (4) Display "," 1.2 GHz Dual Core Processor "," 512 MB RAM and 4 GB ROM "," 5 MP Rear and VGA Front "," Dual-SIM "," Battery 1500mah "," Os Version : Android Kit Kat 4.4.2 "," MultiSim "," 1 Year Brand Warranty"],"vendorCode":"S03123","attributesUpdated":true,"id":1787888359,"image":"imgs/a/m/4/166x194/Samsung-Galaxy-S-Duos-3-SDL168340026-1-e46b3.jpg","price":9710,"voucherPrice":6500,"displayPrice":6500,"prebook":false,"discount":33,"pageUrl":"product/samsung-galaxy-s-duos-3/1787888359","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy S Duos 3 - White Mobile Phone","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":3.9,"noOfReviews":354,"externalCashBackApplicable":false,"shippingDays":1,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":306,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":653975334170,"live":true,"supcs":["SDL027411224"],"images":["imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL027411224-1-8826c.jpg","imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL027411224-2-ed38c.jpg","imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL027411224-3-51f2f.jpg","imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL027411224-4-76278.jpg"]},{"id":635185456417,"live":true,"supcs":["SDL982046267"],"images":["imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL982046267-1-e60ad.jpg","imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL982046267-2-6f057.jpg","imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL982046267-3-63d91.jpg","imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL982046267-4-88ffe.jpg"]},{"id":657207681942,"live":true,"supcs":["SDL960420853"],"images":["imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL960420853-1-2825f.jpg","imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL960420853-2-de058.jpg","imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL960420853-3-f1366.jpg","imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL960420853-4-0aef0.jpg"]},{"id":673396770990,"live":true,"supcs":["SDL991895779"],"images":["imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL991895779-1-4f88b.jpg","imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL991895779-2-614ec.jpg","imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL991895779-3-eec3b.jpg","imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL991895779-4-ebb3d.jpg"]}],"initAttributesFull":[{"id":653975334170,"name":"Color","value":"Green Emerald","soldOut":true,"subAttributes":[],"catalogId":653975334170,"supc":"SDL027411224","live":true,"images":["imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL027411224-1-8826c.jpg","imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL027411224-2-ed38c.jpg","imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL027411224-3-51f2f.jpg","imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL027411224-4-76278.jpg"]},{"id":635185456417,"name":"Color","value":"White Pearl","soldOut":false,"subAttributes":[],"catalogId":635185456417,"supc":"SDL982046267","live":true,"images":["imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL982046267-1-e60ad.jpg","imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL982046267-2-6f057.jpg","imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL982046267-3-63d91.jpg","imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL982046267-4-88ffe.jpg"]},{"id":657207681942,"name":"Color","value":"Black Sapphire","soldOut":false,"subAttributes":[],"catalogId":657207681942,"supc":"SDL960420853","live":true,"images":["imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL960420853-1-2825f.jpg","imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL960420853-2-de058.jpg","imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL960420853-3-f1366.jpg","imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL960420853-4-0aef0.jpg"]},{"id":673396770990,"name":"Color","value":"Gold Platinum","soldOut":false,"subAttributes":[],"catalogId":673396770990,"supc":"SDL991895779","live":true,"images":["imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL991895779-1-4f88b.jpg","imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL991895779-2-614ec.jpg","imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL991895779-3-eec3b.jpg","imgs/a/u/z/Samsung-Galaxy-S6-Edge-32-SDL991895779-4-ebb3d.jpg"]}],"initAttributeType":"Color","highlights":["12.95 cm (5.1) Full HD Super AMOLED Display "," Quad-core 1.5 GHz Cortex-A53 \u0026 Quad-core 2.1 GHz Cortex-A57 Processor "," 32 GB ROM / 3 GB RAM ","Android OS, v5.0.2 Lollipop ","Non-removable Li-Ion 2600 mAh battery ","Barometer, heart rate, SpO2 Senor","16 MP Rear / 5 MP Front Camera"],"vendorCode":"895b1e","launchDate":"10 Apr 2015","attributesUpdated":true,"id":634212839248,"image":"imgs/a/u/z/166x194/Samsung-Galaxy-S6-Edge-32-SDL027411224-1-8826c.jpg","price":58900,"voucherPrice":57399,"prebook":true,"pageUrl":"product/samsung-galaxy-s6-edge-32/634212839248","addedToday":false,"codValid":false,"soldOut":false,"name":"Samsung Galaxy S6 Edge 32 GB","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.5,"noOfReviews":12,"externalCashBackApplicable":false,"shippingDays":2,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":146975754,"live":true,"supcs":["SDL646966903"],"images":["imgs/a/w/j/166x194/Samsung-Galaxy-Core-2-4GB-SDL646966903-1-14182.jpg","imgs/a/w/j/166x194/Samsung-Galaxy-Core-2-4GB-SDL646966903-2-c1b49.jpg"]}],"initAttributesFull":[],"highlights":["11.43 cm (4.5) Display "," 1.2 GHz quad core processor "," 768 MB RAM and 4 GB ROM "," 5 MP Rear and VGA Front "," DUAL (GSM+GSM) "," Wi-Fi : Yes "," Battery Li-Ion 2000 mAh "," Fm Radio : Yes "," MultiSim "," Os Version : 4.4.2 Kitkat "," 1 Year Brand Warranty"],"vendorCode":"S9a17e","attributesUpdated":true,"id":1154038490,"image":"imgs/a/w/j/166x194/Samsung-Galaxy-Core-2-4GB-SDL646966903-1-14182.jpg","price":8999,"voucherPrice":7475,"displayPrice":7475,"prebook":false,"discount":17,"pageUrl":"product/samsung-galaxy-core-2-4gb/1154038490","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy Core 2 4GB Phone - Black","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.0,"noOfReviews":889,"externalCashBackApplicable":false,"shippingDays":1,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":352,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":1862119931,"live":true,"supcs":["SDL463362664"],"images":["imgs/a/l/o/166x194/Samsung-Galaxy-Core-2-4GB-SDL463362664-1-f40cf.jpg","imgs/a/l/o/166x194/Samsung-Galaxy-Core-2-4GB-SDL463362664-2-4875d.jpg"]}],"initAttributesFull":[],"highlights":["11.43 cm (4.5) Display "," 1.2 GHz quad core processor "," 768 MB RAM and 4 GB ROM "," 5 MP Rear and VGA Front "," Os Version : 4.4.2 KITKAT "," Battery Li-Ion 2000 mAh "," GSM "," DUAL (GSM+GSM) "," Fm Radio : YES "," Wi-Fi : YES "," 1 Year Brand Warranty"],"vendorCode":"S0f38d","attributesUpdated":true,"id":95934411,"image":"imgs/a/l/o/166x194/Samsung-Galaxy-Core-2-4GB-SDL463362664-1-f40cf.jpg","price":13950,"voucherPrice":7475,"displayPrice":7475,"prebook":false,"discount":46,"pageUrl":"product/samsung-galaxy-core-2-4gb/95934411","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy Core 2 4GB Phone White","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.1,"noOfReviews":525,"externalCashBackApplicable":false,"shippingDays":1,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":352,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":1887810526,"live":true,"supcs":["SDL806177494"],"images":["imgs/a/q/n/166x194/Samsung-Galaxy-Core-Prime-G360H-SDL806177494-1-3831a.jpg","imgs/a/q/n/166x194/Samsung-Galaxy-Core-Prime-G360H-SDL806177494-2-4ac8e.jpg","imgs/a/q/n/166x194/Samsung-Galaxy-Core-Prime-G360H-SDL806177494-3-c44ee.jpg"]}],"initAttributesFull":[],"highlights":["11.43 cm (4.5) capacitive touchscreen "," 1.2 GHz Quad Core Processor "," 1 GB RAM and 8 GB ROM "," 5 MP Rear Camera and 2 MP Front "," Battery Li-Ion 2000 Mah "," Wi-Fi : Wi-Fi 802.11 B/G/N, Wi-Fi Direct, Hotspot "," Fm Radio : Yes "," Os Version : Android 4.4 Kitkat "," Multisim "," Dual Sim "," 1 Year Brand Warranty"],"vendorCode":"S0f38d","attributesUpdated":true,"id":348067765,"image":"imgs/a/q/n/166x194/Samsung-Galaxy-Core-Prime-G360H-SDL806177494-1-3831a.jpg","price":11390,"voucherPrice":8978,"displayPrice":8190,"prebook":false,"discount":28,"pageUrl":"product/samsung-galaxy-core-prime-g360h/348067765","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy Core Prime G360H White","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.1,"noOfReviews":224,"externalCashBackApplicable":false,"shippingDays":1,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":386,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":495897176,"live":true,"supcs":["SDL175350551"],"images":["imgs/a/j/0/166x194/Samsung-Galaxy-Grand-2-Black-SDL175350551-1-64a6b.jpg","imgs/a/j/0/166x194/Samsung-Galaxy-Grand-2-Black-SDL175350551-2-ae5c4.jpg"]}],"initAttributesFull":[],"highlights":["13.35 cm (5.25) Display "," 1.2GHz Quad Core Processor "," 1.5 GB RAM and 8 GB ROM "," 8 MP Rear and 1.9 MP Front "," Wifi "," FM Radio "," 3G "," Expandable Up To 64 GB "," Android 4.3 Jellybean "," 1 Year Brand Warranty"],"vendorCode":"S6b740","attributesUpdated":true,"id":116878426,"image":"imgs/a/j/0/166x194/Samsung-Galaxy-Grand-2-Black-SDL175350551-1-64a6b.jpg","price":27900,"voucherPrice":14275,"displayPrice":14275,"prebook":false,"discount":49,"pageUrl":"product/samsung-galaxy-grand-2-black/116878426","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy Grand 2 Black","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.1,"noOfReviews":1361,"externalCashBackApplicable":false,"shippingDays":1,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":672,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":678619723903,"live":true,"supcs":["SDL870392697"],"images":["imgs/a/t/j/166x194/SAMSUNG-GALAXY-GRAND-NEO-PLUS-SDL870392697-1-25b73.jpg","imgs/a/t/j/166x194/SAMSUNG-GALAXY-GRAND-NEO-PLUS-SDL870392697-2-1dbad.jpg"]},{"id":618593612996,"live":true,"supcs":["SDL942989980"],"images":["imgs/a/t/j/166x194/SAMSUNG-GALAXY-GRAND-NEO-PLUS-SDL942989980-1-0d06f.jpg","imgs/a/t/j/166x194/SAMSUNG-GALAXY-GRAND-NEO-PLUS-SDL942989980-2-70b0c.jpg"]}],"initAttributesFull":[{"id":618593612996,"name":"Color","value":"Black","soldOut":false,"subAttributes":[],"catalogId":618593612996,"supc":"SDL942989980","live":true,"images":["imgs/a/t/j/SAMSUNG-GALAXY-GRAND-NEO-PLUS-SDL942989980-1-0d06f.jpg","imgs/a/t/j/SAMSUNG-GALAXY-GRAND-NEO-PLUS-SDL942989980-2-70b0c.jpg"]},{"id":678619723903,"name":"Color","value":"White","soldOut":false,"subAttributes":[],"catalogId":678619723903,"supc":"SDL870392697","live":true,"images":["imgs/a/t/j/SAMSUNG-GALAXY-GRAND-NEO-PLUS-SDL870392697-1-25b73.jpg","imgs/a/t/j/SAMSUNG-GALAXY-GRAND-NEO-PLUS-SDL870392697-2-1dbad.jpg"]}],"initAttributeType":"Color","highlights":["5 Inches Display "," Quad-core 1.2 GHz Processor "," 5 MP Camera "," Android OS, v4.4.4 (KitKat) "," 8GB ROM / 1GB RAM "," Li-Ion 2100 mAh battery","1 year Warranty"],"vendorCode":"cc5fdf","attributesUpdated":true,"id":638811302053,"image":"imgs/a/t/j/166x194/SAMSUNG-GALAXY-GRAND-NEO-PLUS-SDL870392697-1-25b73.jpg","price":12400,"voucherPrice":9999,"displayPrice":9999,"prebook":false,"discount":19,"pageUrl":"product/samsung-galaxy-grand-neo-plus/638811302053","addedToday":false,"codValid":true,"soldOut":false,"name":"SAMSUNG GALAXY GRAND NEO PLUS I9060I","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.6,"noOfReviews":20,"externalCashBackApplicable":false,"shippingDays":2,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":471,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":1116523955,"live":true,"supcs":["SDL834691323"],"images":["imgs/a/m/n/166x194/Samsung-Guru-Music-2-Duos-SDL834691323-1-ed195.jpg","imgs/a/m/n/166x194/Samsung-Guru-Music-2-Duos-SDL834691323-2-4862d.jpg","imgs/a/m/n/166x194/Samsung-Guru-Music-2-Duos-SDL834691323-3-cd0d6.jpg","imgs/a/m/n/166x194/Samsung-Guru-Music-2-Duos-SDL834691323-4-ebc97.jpg","imgs/a/m/n/166x194/Samsung-Guru-Music-2-Duos-SDL834691323-5-a47f3.jpg"]}],"initAttributesFull":[],"highlights":["Dual SIM "," FM Radio "," Mp3 Music Player "," Micro SD card slot "," Torch"],"vendorCode":"Sfb017","attributesUpdated":true,"id":197236301,"image":"imgs/a/m/n/166x194/Samsung-Guru-Music-2-Duos-SDL834691323-1-ed195.jpg","price":1700,"voucherPrice":1692,"displayPrice":1675,"prebook":false,"discount":1,"pageUrl":"product/samsung-guru-music-2-duos/197236301","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Guru Music 2 Duos SM-B310E (White)","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":3.3,"noOfReviews":193,"externalCashBackApplicable":false,"shippingDays":2,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":79,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":696444403,"live":true,"supcs":["SDL214875822"],"images":["imgs/a/o/o/166x194/Samsung-Galaxy-Star2-G130E-White-SDL214875822-1-e88ff.jpg","imgs/a/r/5/166x194/smssns-0202f.jpg"]}],"initAttributesFull":[],"highlights":["8.89 cm (3.5) Display "," 1 GHz Processor "," 512 MB RAM and 4 GB ROM "," 2 MP Primary Camera "," MultiSim "," Dual Sim "," Os Version : ndroid 4.4 Kitkat "," Wi-Fi : Yes "," Fm Radio : Yes "," 1 Year Brand Warranty"],"vendorCode":"Sd83c9","attributesUpdated":true,"id":215245699,"image":"imgs/a/o/o/166x194/Samsung-Galaxy-Star2-G130E-White-SDL214875822-1-e88ff.jpg","price":5490,"voucherPrice":5490,"displayPrice":5490,"prebook":false,"discount":0,"pageUrl":"product/samsung-galaxy-star2-g130e-white/215245699","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy Star2 G130E White","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.1,"noOfReviews":29,"externalCashBackApplicable":false,"shippingDays":2,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":258,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":1826178721,"live":true,"supcs":["SDL810574901"],"images":["imgs/a/j/u/166x194/Samsung-Galaxy-Grand-2-SDL810574901-1-e7b67.jpg","imgs/a/j/u/166x194/Samsung-Galaxy-Grand-2-SDL810574901-2-d195a.jpg","imgs/a/j/u/166x194/Samsung-Galaxy-Grand-2-SDL810574901-3-4c93f.jpg","imgs/a/j/u/166x194/Samsung-Galaxy-Grand-2-SDL810574901-4-ab645.jpg","imgs/a/j/u/166x194/Samsung-Galaxy-Grand-2-SDL810574901-5-ce53e.jpg"]}],"initAttributesFull":[],"highlights":["13.35 cm (5.25) Display "," 1.2GHz Quad Core Processor "," 1.5 GB RAM and 8 GB ROM "," 8 MP Rear and 1.9 MP Front "," Wifi "," FM Radio "," 3G "," Expandable Up To 64 GB "," Android 4.3 Jellybean "," 1 Year Brand Warranty"],"vendorCode":"S796fb","launchDate":"4th Week Of January","attributesUpdated":true,"id":1137017608,"image":"imgs/a/j/u/166x194/Samsung-Galaxy-Grand-2-SDL810574901-1-e7b67.jpg","price":18999,"voucherPrice":14360,"displayPrice":13299,"prebook":false,"discount":30,"pageUrl":"product/samsung-galaxy-grand-2-white/1137017608","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy Grand 2 White","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.2,"noOfReviews":1390,"externalCashBackApplicable":false,"shippingDays":1,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":626,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":293848233,"live":true,"supcs":["SDL002987067"],"images":["imgs/a/j/0/166x194/Samsung-Note-3-Neo-Black-SDL002987067-1-05510.jpg","imgs/a/j/0/166x194/Samsung-Note-3-Neo-Black-SDL002987067-2-ccc2a.jpg","imgs/a/j/0/166x194/Samsung-Note-3-Neo-Black-SDL002987067-3-1b267.jpg"]}],"initAttributesFull":[],"highlights":["13.97 cm (5.5) Super AMOLED Display "," Hexa Core (A15 Dual 1.7 GHz + A7 Quad 1.3 GHZ) "," 2 GB RAM "," 8 MP Rear Camera and 2 MP Front "," Gyro, Proximity Sensor "," Android 4.3 Jelly Bean "," WiFi "," NFC Support "," Full HD Recording "," Gesture Control "," GPS "," Bluetooth "," 1 Year Brand Warranty"],"vendorCode":"S796fb","attributesUpdated":true,"id":787554074,"image":"imgs/a/j/0/166x194/Samsung-Note-3-Neo-Black-SDL002987067-1-05510.jpg","price":29999,"voucherPrice":19777,"displayPrice":19777,"prebook":false,"discount":34,"pageUrl":"product/samsung-note-3-neo-black/787554074","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Note 3 Neo Black","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.1,"noOfReviews":523,"externalCashBackApplicable":false,"shippingDays":1,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":931,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":1570300609,"live":true,"supcs":["SDL700825952"],"images":["imgs/a/j/u/166x194/Samsung-Galaxy-Star-Pro-Wine-SDL700825952-1-47c7f.jpg"]}],"initAttributesFull":[],"highlights":["10.16 cm (4) Display "," 1.2 GHz Dual Core Processor "," 512 MB RAM and 4 GB ROM "," 2MP Rear Camera "," Built in Languages "," Android 4.1 Jelly Bean "," Dual SIM "," WiFi "," Bluetooth "," 1 Year Brand Warranty"],"vendorCode":"S8cbdc","attributesUpdated":true,"id":127346911,"image":"imgs/a/j/u/166x194/Samsung-Galaxy-Star-Pro-Wine-SDL700825952-1-47c7f.jpg","price":6470,"voucherPrice":5299,"displayPrice":5299,"prebook":false,"discount":18,"pageUrl":"product/samsung-galaxy-star-pro-wine/127346911","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy Star Pro Wine Red","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":3.8,"noOfReviews":129,"externalCashBackApplicable":false,"shippingDays":2,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":249,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"},{"offers":[{"id":1118357810,"live":true,"supcs":["SDL695712857"],"images":["imgs/a/j/u/166x194/Samsung-Galaxy-S5-Shimmery-White-SDL695712857-1-73301.jpg","imgs/a/j/u/166x194/Samsung-Galaxy-S5-Shimmery-White-SDL695712857-2-bca54.jpg","imgs/a/j/u/166x194/Samsung-Galaxy-S5-Shimmery-White-SDL695712857-3-0e000.jpg","imgs/a/j/u/166x194/Samsung-Galaxy-S5-Shimmery-White-SDL695712857-4-ac693.jpg","imgs/a/j/u/166x194/Samsung-Galaxy-S5-Shimmery-White-SDL695712857-5-352f7.jpg","imgs/a/j/u/166x194/Samsung-Galaxy-S5-Shimmery-White-SDL695712857-6-6b89f.jpg"]}],"initAttributesFull":[],"highlights":["12.95 cm (5.1) Full HD Super AMOLED Display "," Quad 1.9GHz + Quad 1.3GHz + XMM6360 "," 2 GB RAM and 16 GB ROM "," 16 MP Rear Camera and 2 MP Front Camera "," Finger Scanner "," HDR(Rich tone) "," Ultra Power Saving Mode "," Selective Focus "," Fast Auto Focus "," S Health "," Android 4.4.2 (Kitkat) "," 1 Year Brand Warranty"],"vendorCode":"S796fb","attributesUpdated":true,"id":922485437,"image":"imgs/a/j/u/166x194/Samsung-Galaxy-S5-Shimmery-White-SDL695712857-1-73301.jpg","price":39999,"voucherPrice":28200,"displayPrice":28200,"prebook":false,"discount":29,"pageUrl":"product/samsung-galaxy-s5-shimmery-white/922485437","addedToday":false,"codValid":true,"soldOut":false,"name":"Samsung Galaxy S5 Shimmery White","freebies":[],"initialAttributes":[],"productOfferIds":[],"live":true,"launched":true,"avgRating":4.1,"noOfReviews":144,"externalCashBackApplicable":false,"shippingDays":1,"isProductNameClipped":false,"isFreebieNameClipped":false,"shippingCharges":0,"labelUrl":"mobiles-mobile-phones","labelId":175,"labelName":"Mobile Phones","emi":1327,"emiApplicable":true,"productLifeState":"Buy Now","productStatus":"active"}]' id="productDTO" />
<input type="text" name="productTagMapJson" value='{"Offer":{"offerDescription":"","offer":false,"tag":"Offer","tagImageUrl":"http://i2.sdlcdn.com/img/productTagAdmin/07/offer.png"},"New":{"offerDescription":"","offer":false,"tag":"New","tagImageUrl":"http://i4.sdlcdn.com/img/productTagAdmin/07/new2.png","tagColor":"#1a96d6"},"Exclusive":{"offerDescription":"","offer":false,"tag":"Exclusive","tagImageUrl":"http://i2.sdlcdn.com/img/productTagAdmin/07/exclusive.png","tagColor":"#dc615d"}}' id="productTagMapJson" />
<input type="text" value="false" id="pageReloaded" name="pageReloaded" />
<input type="text" value="0" id="seeMoreState" name="seeMoreState" />
<input type="text" value="20" id="startProductState" name="startProductState" />
<input type="text" id="selectedTabId" name="selectedTabId" value="175" />
<input type="text" id="compareFlag" name="compareFlag" value="true" />
<input type="text" id="emiThreshold" name="emiThreshold" value="3000" />
<input type="text" id="prebookText" name="prebookText" value="This product will be shipped to you on day of its official release date" />
</div>
<input type="hidden" name="resultsOnPage" id="resultsOnPage" />
<div class="ajax-loader-outer corrClass7">Loading...</div>
<!-- Main deal section -->
<div id="categoryTopSection">
<div class="breadsearch-row-border">
<div class="breadsearch-row">
<div class="lfloat ">
<div id="breadCrumbWrapper" class="notVisible bread-crumb ">
<div class="leftWrapper breadCrumbPaddingL "> </div>
<div class="lfloat containerBreadcrumb" itemscope itemtype="http://data-vocabulary.org/Breadcrumb" style="margin-top: 3px;">
<a class="bCrumbOmniTrack" href="http://www.snapdeal.com" itemprop="url" omniID="BD=home">
<span itemprop="title">Home</span>
</a>
</div>
<div class="lfloat notVisible" id='breadCrumbWrapper2'>
<div id='breadCrumbLabelIds' class='hide'>
12,
175,
</div>
<i class="semiRightArrow"></i>
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="containerBreadcrumb">
<a class="bCrumbOmniTrack" href="http://www.snapdeal.com/products/mobiles" omniID="BD=home_Mobiles & Tablets" itemprop="url">
<span itemprop="title">Mobiles & Tablets</span>
</a>
</div>
<i class="semiRightArrow"></i>
<div class="containerBreadcrumb">
<span class="active-bread">Mobile Phones</span>
<div class="breadcrumbArrow-down" prevLink='/products/mobiles' prevName='Mobiles & Tablets' >
<div class='breadcrumbPopupArrowWrapper'><div class="breadcrumbPopupArrow" ></div></div>
<div class="breadcrumbPopup">
<div class="sdScroll breadcrumbDropList">
<ul class="breadcrumbinnerleft">
<li><img style="display: block;margin: 0 auto;" lazySrc="http://i2.sdlcdn.com/img/metroUI/loader2.gif" /></li>
</ul>
</div>
</div>
</div>
</div>
<div></div>
</div>
<div class="clear"></div>
</div>
<script type='text/jqtmpl' id='breadCrumbDropdownItemTmpl'>
{{each data}}
{{if bCrumbOmni ="$value.name" }} {{/if}}
<li>
<a class="bCrumbOmniTrack" omniID="BD=home_${$value.name}"
{{if isAbs }} href="${$value.link}" {{else}} href='/products/${$value.link}' {{/if}}
style='text-decoration:none;'>
<span>${$value.name}</span>
<span>(${$value.count})</span>
</a>
</li>
{{/each}}
</script>
<script type='text/jqtmpl' id='breadCrumbItemTmpl'>
{{each data}}
{{if bCrumbOmni ="$value.name" }} {{/if}}
{{if bcrumbLink = $value.url}}{{/if}}
{{if bcrumbName = $value.name}}{{/if}}
<i class="semiRightArrow"></i>
{{if bcrumbLink}}
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="containerBreadcrumb">
<a class="bCrumbOmniTrack"
{{if $value.isAbs }} href="${bcrumbLink}" {{else}} href="/products/${bcrumbLink}" {{/if}}
omniID="BD=home_${bcrumbName}" itemprop="url">
<span itemprop="title">{{html bcrumbName}}</span>
</a>
{{else}}
<div class="containerBreadcrumb">
<span class="active-bread">${bcrumbName}</span>
{{/if}}
{{if lastBCrumb}}
{{if lastBCrumb.url}}
{{if lastBCrumb.name !='Brands'}}
{{if $value.hasSub}}
<div class="breadcrumbArrow-down" prevLink='${lastBCrumb.url}' prevName='${lastBCrumb.name}' >
<div class='breadcrumbPopupArrowWrapper'><div class="breadcrumbPopupArrow" ></div></div>
<div class="breadcrumbPopup">
<div class="sdScroll breadcrumbDropList">
<ul class="breadcrumbinnerleft">
<li><img style="display: block;margin: 0 auto;" lazySrc="http://i2.sdlcdn.com/img/metroUI/loader2.gif" /></li>
</ul>
</div>
</div>
</div>
{{/if}}
{{/if}}
{{/if}}
{{/if}}
</div>
{{if lastBCrumb = $value }} {{/if}}
{{/each}}
</script></div>
<div class="clear"></div>
</div>
</div>
<div class="filter-prod-head-outer" style="">
<div class="lfloat" itemscope itemtype="http://schema.org/Product">
<h1 itemprop="name">Mobile Phones</h1>
<span id="numbFound">(<span id="no-of-results-filter">541</span>)</span>
</div>
<div class="clear"></div>
</div>
<div id="productResultsFound">
<div class="lfloat searchResult-text1" data-spellCheckUsed="false">
<span class="searcResult-text-cont">Showing <span class="numOfPro">541</span> results for</span>
<span class="searcResult-text-head"> "samsung" </span>
<span>in Mobile Phones</span>
</div>
<div class="clear"></div>
</div>
<div id="similarSearchKeywords">
<div class="overhid similarSearchKeywordsWrapper">
<strong style="color:#191919; padding-right:10px">Related searches:</strong>
<a class="similarSearchKeywordsLinks" href="http://www.snapdeal.com/search?keyword=samsung galaxy grand max&catId=&categoryId=0&suggested=false&vertical=&noOfResults=20&clickSrc=go_similar_search_keyword" class="similarSearchKeywordsLinks&lastKeyword=&prodCatId=&changeBackToAll=false&foundInAll=false&categoryIdSearched=&url=&utmContent=&catalogID=&dealDetail=">samsung galaxy grand max</a>
<a class="similarSearchKeywordsLinks" href="http://www.snapdeal.com/search?keyword=samsung galaxy core 2&catId=&categoryId=0&suggested=false&vertical=&noOfResults=20&clickSrc=go_similar_search_keyword" class="similarSearchKeywordsLinks&lastKeyword=&prodCatId=&changeBackToAll=false&foundInAll=false&categoryIdSearched=&url=&utmContent=&catalogID=&dealDetail=">samsung galaxy core 2</a>
<a class="similarSearchKeywordsLinks" href="http://www.snapdeal.com/search?keyword=samsung galaxy grand 2&catId=&categoryId=0&suggested=false&vertical=&noOfResults=20&clickSrc=go_similar_search_keyword" class="similarSearchKeywordsLinks&lastKeyword=&prodCatId=&changeBackToAll=false&foundInAll=false&categoryIdSearched=&url=&utmContent=&catalogID=&dealDetail=">samsung galaxy grand 2</a>
<a class="similarSearchKeywordsLinks" href="http://www.snapdeal.com/search?keyword=mobiles&catId=&categoryId=0&suggested=false&vertical=&noOfResults=20&clickSrc=go_similar_search_keyword" class="similarSearchKeywordsLinks&lastKeyword=&prodCatId=&changeBackToAll=false&foundInAll=false&categoryIdSearched=&url=&utmContent=&catalogID=&dealDetail=">mobiles</a>
<a class="similarSearchKeywordsLinks" href="http://www.snapdeal.com/search?keyword=samsung z1&catId=&categoryId=0&suggested=false&vertical=&noOfResults=20&clickSrc=go_similar_search_keyword" class="similarSearchKeywordsLinks&lastKeyword=&prodCatId=&changeBackToAll=false&foundInAll=false&categoryIdSearched=&url=&utmContent=&catalogID=&dealDetail=">samsung z1</a>
<a class="similarSearchKeywordsLinks" href="http://www.snapdeal.com/search?keyword=samsung galaxy s6&catId=&categoryId=0&suggested=false&vertical=&noOfResults=20&clickSrc=go_similar_search_keyword" class="similarSearchKeywordsLinks&lastKeyword=&prodCatId=&changeBackToAll=false&foundInAll=false&categoryIdSearched=&url=&utmContent=&catalogID=&dealDetail=">samsung galaxy s6</a>
</div>
</div>
<div id="showPromoWindow" style="display:none;">
<div class='divCut lazyBg'></div>
<span class="offertext lazyBg">OFFER</span>
<span id="showPromotext"></span>
<span class="showPromoConditionText">
<span id="showPromoConditionText">See T&C <span class='infoIcon lazyBg'></span></span>
<div class="sdTooltipWrapper top-right" id="showPromoTooltip">
<div id="showPromoCond"></div>
</div>
</span>
</div>
</div><div class="pageWrapper clearfix product-cat-deal" itemscope itemtype="http://schema.org/Product">
<div class="rightWrapper">
<div class="topSearchItems"></div>
<div id="isRetained" class='hidden'></div>
<div id="tpHdng">
<div id="filter-no-results-message" class='hidden'>
<div class="filter-no-results">
<span>No Mobile Phones found.</span><br /> We're sorry,
but we couldn't find any products that matching your
requirements.
</div>
<div class="filter-no-prod-suggest-outer">
<div class="filter-no-prod-suggest">However, here are some
similar products which you may like!</div>
<div class="filter-no-prod-ico"></div>
</div>
</div>
<div class='hidden' id='productTypeName'>Mobile Phones</div>
<script>
var hideTopCompareBar = 'false' != 'true' ;
</script><div class="sort">
<div class="sortbox"><label class="lang sort-by-lang">SORT BY</label> :</div>
<div class="sort-value" sortType="rlvncy"><label class="lang sort-by-relevance-lang">Relevance</label></div>
<div class="sort-value" sortType="plrty"><label class="lang sort-by-popularity-lang">Popularity</label></div>
<div class="sort-value" sortType="bstslr"><label class="lang sort-by-bestsellers-lang">Bestsellers</label></div>
<div class="sort-value sort-by-price-lang" sortType="none" plth="plth" phtl="phtl"><label class="lang">Price</label></div>
<div class="sort-value" sortType="rec"><label class="lang sort-by-fresh-arrivals-lang">Fresh Arrivals</label></div>
<div class="sort-value" sortType="tprtd"><label class="lang sort-by-customer-rating-lang">Customer Rating</label></div>
<div class="view_type_wrapper">
<div class='hidden' id="selectedViewType">Grid</div>
<div class='hidden' id="defaultViewType">Grid</div>
<span class="list inactive_view" viewtype="List">
<label class="lang list-view-lang">List</label>
<i class="icon-list"></i>
</span>
<span class="mar_10_left grid " viewtype="Grid">
<label class="lang grid-view-lang">Grid</label>
<i class="icon-grid"></i>
</span>
</div>
</div>
<div class="clear"></div>
<div id="clearSelectedFilters" style="display:block">
<div id="refined-box-content">
<div class="filtrs-top-selected">Search: <a onClick="delSearchKeyword(this);">samsung<i class="icon-clear"></i></a></div>
<div class="rfloat clear-all-reset">
<i class="icon-clearAll"></i><label class="clear-all-lang">Clear All Filters</label>
</div>
</div>
</div>
</div>
<div id="products-main4" class="products_wrapper product_listing_outer fnt-tahoma" totDeals="20" >
<div class="product_grid_row">
<div class="product_grid_cont hoverProdCont4Grid gridLayout4" categoryId="175" id="647437791381" price='14990'>
<div class="product_grid_box">
<div class="hoverWish wishOnProduct" data-selected="false" pog="647437791381" style="" >
<i class="icon-grey-heart"></i>
<span class="fnt11 wish-text">Shortlist</span>
</div>
<div class="hoverQuick quickView-wrapper" quickViewId="647437791381">
<span class="quickViewImage"></span>
<span class="fnt11 quickView">Quick View</span>
</div>
<div class="buybutton">
<a href="javascript:void(0);" class="buyBlueButton addToCartOn4Grid buylink-647437791381 prodlistBuy-647437791381"
catalog="652456877954"
vendorCode="Se5c3f"
supc="SDL021483758" prebook="true"
id="listBuy-647437791381"
vendorScore=""
shippingCharges="0" onclick="return onBuyClick(647437791381);">
<div><span class="cart"></span>
<span class="buyLabel"><label class="lang more-seller-buy-lang">Buy</label></span></div>
</a>
</div>
<div class="productWrapper">
<div class="shippingImage ">
<span class="tooltip">
<label class="dispatched-one-day-lang">Dispatched in 1 business day</label>
</span>
</div>
<div class="outerImg">
<div class=" product-image ">
<a href="http://www.snapdeal.com/product/samsung-galaxy-grand-max/647437791381" v="p" isPartialSearch="false"
categoryId="175" class="hit-ss-logger somn-track prodLink" pogId="647437791381"
pos="0;541" hidOmnTrack="">
<img alt="Samsung Galaxy Grand Max" title= "Samsung Galaxy Grand Max" class="gridViewImage" anim='true' lazySrc="http://n2.sdlcdn.com/imgs/a/s/9/166x194/Samsung-Galaxy-Grand-Max-SDL021483758-1-9dcf3.jpg" src="" border="0"/>
</a>
</div>
</div>
<div class="hoverProductWrapper product-txtWrapper ">
<div class="product-title">
<a href="http://www.snapdeal.com/product/samsung-galaxy-grand-max/647437791381" v="p" isPartialSearch="false"
categoryId="175" class="hit-ss-logger somn-track prodLink" pogId="647437791381" pos="0;541" hidOmnTrack="">
Samsung Galaxy Grand Max
</a>
</div>
<a id="prodDetails" rel="nofollow" href="http://www.snapdeal.com/product/samsung-galaxy-grand-max/647437791381" v="p" isPartialSearch="false"
categoryId="175" class="hit-ss-logger somn-track prodLink" pogId="647437791381" pos="0;541" hidOmnTrack="">
<div class="ratingsWrapper">
<div class="ratingStarsSmall corrClass8" ratings="4.2" ></div>
<div class="lfloat">(3479)</div>
</div>
<div class="product-price">
<div>
Rs 14990<span class=""><strike>Rs 18000</strike> <s>(17%)</s></span>
</div>
<div class="emiMonthsHoverGrid">
EMI starts at Rs. 706</div>
</div>
</a>
<script>var highlightsEnabledFlag= "true" == "true"</script>
<div class="lfloat product_list_view_highlights">
<div class="product_list_view_heading"></div>
<div>
<ul id="highLights">
<li>13.35 cm (5.25) HD Display </li>
<li> 1.2 GHz Quad Processor Qualcomm </li>
<li> 1.5 GB RAM and 16 GB ROM </li>
<li> 13 MP Rear Camera and 5 MP Front </li>
<li> Android v4.4(KitKat) Operating System </li>
</ul>
</div>
</div>
</div>
</div> <div class="product-txtWrapper attriWrapper">
<div class="sdCheckbox addToCompare">
<input id="checkboxAddCompare-647437791381" type="checkbox" onClick="addToCompareClick(this)" />
<label for="checkboxAddCompare-647437791381" class="lang prod-grid-add-to-compare-lang">
Add to Compare</label>
</div>
</div>
</div>
</div><div class="product_grid_cont hoverProdCont4Grid gridLayout4" categoryId="175" id="16558352" price='22110'>
<div class="product_grid_box">
<div class="hoverWish wishOnProduct" data-selected="false" pog="16558352" style="" >
<i class="icon-grey-heart"></i>
<span class="fnt11 wish-text">Shortlist</span>
</div>
<div class="hoverQuick quickView-wrapper" quickViewId="16558352">
<span class="quickViewImage"></span>
<span class="fnt11 quickView">Quick View</span>
</div>
<div class="buybutton">
<a href="javascript:void(0);" class="buyBlueButton addToCartOn4Grid buylink-16558352 prodlistBuy-16558352"
catalog="2005556267"
vendorCode="cc5fdf"
supc="SDL108484327" prebook="true"
id="listBuy-16558352"
vendorScore=""
shippingCharges="0" onclick="return onBuyClick(16558352);">
<div><span class="cart"></span>
<span class="buyLabel"><label class="lang more-seller-buy-lang">Buy</label></span></div>
</a>
</div>
<div class="productWrapper">
<div class="outerImg">
<div class=" product-image ">
<a href="http://www.snapdeal.com/product/samsung-galaxy-a5/16558352" v="p" isPartialSearch="false"
categoryId="175" class="hit-ss-logger somn-track prodLink" pogId="16558352"
pos="1;541" hidOmnTrack="">
<img alt="Samsung Galaxy A5" title= "Samsung Galaxy A5" class="gridViewImage" anim='true' lazySrc="http://n2.sdlcdn.com/imgs/a/r/3/166x194/Samsung-Galaxy-A5-SDL108484327-1-7dd0c.jpg" src="" border="0"/>
</a>
</div>
</div>
<div class="hoverProductWrapper product-txtWrapper ">
<div class="product-title">
<a href="http://www.snapdeal.com/product/samsung-galaxy-a5/16558352" v="p" isPartialSearch="false"
categoryId="175" class="hit-ss-logger somn-track prodLink" pogId="16558352" pos="1;541" hidOmnTrack="">
Samsung Galaxy A5
</a>
</div>
<a id="prodDetails" rel="nofollow" href="http://www.snapdeal.com/product/samsung-galaxy-a5/16558352" v="p" isPartialSearch="false"
categoryId="175" class="hit-ss-logger somn-track prodLink" pogId="16558352" pos="1;541" hidOmnTrack="">
<div class="ratingsWrapper">
<div class="ratingStarsSmall corrClass8" ratings="3.9" ></div>
<div class="lfloat">(67)</div>
</div>
<div class="product-price">
<div>
Rs 22110<span class=""><strike>Rs 30000</strike> <s>(26%)</s></span>
</div>
<div class="emiMonthsHoverGrid">
EMI starts at Rs. 1041</div>
</div>
</a>
<script>var highlightsEnabledFlag= "true" == "true"</script>
<div class="lfloat product_list_view_highlights">
<div class="product_list_view_heading"></div>
<div>
<ul id="highLights">
<li>12.70 cm (5) HD Super AMOLED Touch Screen Display </li>
<li> 1.2 GHz Quad Core Processor </li>
<li> 2GB RAM and 16 GB ROM </li>
<li> 13 MP Rear Camera and 5 MP Front </li>
<li> 2300 MAh Battery </li>
</ul>
</div>
</div>
</div>
</div> <div class="product-txtWrapper attriWrapper">
<div class="sdCheckbox addToCompare">
<input id="checkboxAddCompare-16558352" type="checkbox" onClick="addToCompareClick(this)" />
<label for="checkboxAddCompare-16558352" class="lang prod-grid-add-to-compare-lang">
Add to Compare</label>
</div>
</div>
</div>
</div><div class="product_grid_cont hoverProdCont4Grid gridLayout4" categoryId="175" id="1821761930" price='8806'>
<div class="product_grid_box">
<div class="hoverWish wishOnProduct" data-selected="false" pog="1821761930" style="" >
<i class="icon-grey-heart"></i>
<span class="fnt11 wish-text">Shortlist</span>
</div>
<div class="hoverQuick quickView-wrapper" quickViewId="1821761930">
<span class="quickViewImage"></span>
<span class="fnt11 quickView">Quick View</span>
</div>
<div class="buybutton">
<a href="javascript:void(0);" class="buyBlueButton addToCartOn4Grid buylink-1821761930 prodlistBuy-1821761930"
catalog="1203619737"
vendorCode="S03123"
supc="SDL133864808" prebook="true"
id="listBuy-1821761930"
vendorScore=""
shippingCharges="0" onclick="return onBuyClick(1821761930);">
<div><span class="cart"></span>
<span class="buyLabel"><label class="lang more-seller-buy-lang">Buy</label></span></div>
</a>
</div>
<div class="productWrapper">
<div class="shippingImage ">
<span class="tooltip">
<label class="dispatched-one-day-lang">Dispatched in 1 business day</label>
</span>
</div>
<div class="outerImg">
<div class=" product-image ">
<a href="http://www.snapdeal.com/product/samsung-galaxy-core-prime-g630h/1821761930" v="p" isPartialSearch="false"
categoryId="175" class="hit-ss-logger somn-track prodLink" pogId="1821761930"
pos="2;541" hidOmnTrack="">
<img alt="Samsung Galaxy Core Prime G360H Charcoal Grey" title= "Samsung Galaxy Core Prime G360H Charcoal Grey" class="gridViewImage" anim='true' lazySrc="http://n4.sdlcdn.com/imgs/a/s/d/166x194/samsung-galaxy-core-prime-G630H-SDL133864808-1-d6569.jpg" src="" border="0"/>
</a>
</div>
</div>
<div class="hoverProductWrapper product-txtWrapper ">
<div class="product-title">
<a href="http://www.snapdeal.com/product/samsung-galaxy-core-prime-g630h/1821761930" v="p" isPartialSearch="false"
categoryId="175" class="hit-ss-logger somn-track prodLink" pogId="1821761930" pos="2;541" hidOmnTrack="">
Samsung Galaxy Core Prime G360H Charcoal Grey
</a>
</div>
<a id="prodDetails" rel="nofollow" href="http://www.snapdeal.com/product/samsung-galaxy-core-prime-g630h/1821761930" v="p" isPartialSearch="false"
categoryId="175" class="hit-ss-logger somn-track prodLink" pogId="1821761930" pos="2;541" hidOmnTrack="">
<div class="ratingsWrapper">
<div class="ratingStarsSmall corrClass8" ratings="4.1" ></div>
<div class="lfloat">(196)</div>
</div>
<div class="product-price">
<div>
Rs 8806<span class=""><strike>Rs 9900</strike> <s>(11%)</s></span>
</div>
<div class="emiMonthsHoverGrid">
EMI starts at Rs. 415</div>
</div>
</a>
<script>var highlightsEnabledFlag= "true" == "true"</script>
<div class="lfloat product_list_view_highlights">
<div class="product_list_view_heading"></div>
<div>
<ul id="highLights">
<li>11.43 cm (4.5) capacitive touchscreen </li>
<li> 1.2 GHz Quad Core Processor </li>
<li> 1 GB RAM and 8 GB ROM </li>
<li> 5 MP Rear Camera and 2 MP Front </li>
<li> MultiSim </li>
</ul>
</div>
</div>
</div>
</div> <div class="product-txtWrapper attriWrapper">
<div class="sdCheckbox addToCompare">
<input id="checkboxAddCompare-1821761930" type="checkbox" onClick="addToCompareClick(this)" />
<label for="checkboxAddCompare-1821761930" class="lang prod-grid-add-to-compare-lang">
Add to Compare</label>
</div>
</div>
</div>
</div><div class="product_grid_cont hoverProdCont4Grid gridLayout4" categoryId="175" id="655778241669" price='15630'>
<div class="product_grid_box">
<div class="hoverWish wishOnProduct" data-selected="false" pog="655778241669" style="" >
<i class="icon-grey-heart"></i>
<span class="fnt11 wish-text">Shortlist</span>
</div>
<div class="hoverQuick quickView-wrapper" quickViewId="655778241669">
<span class="quickViewImage"></span>
<span class="fnt11 quickView">Quick View</span>
</div>
<div class="buybutton">
<a href="javascript:void(0);" class="buyBlueButton addToCartOn4Grid buylink-655778241669 prodlistBuy-655778241669"
catalog="684660127570"
vendorCode="S939dc"
supc="SDL029813270" prebook="true"
id="listBuy-655778241669"
vendorScore=""
shippingCharges="0" onclick="return onBuyClick(655778241669);">
<div><span class="cart"></span>
<span class="buyLabel"><label class="lang more-seller-buy-lang">Buy</label></span></div>
</a>
</div>
<div class="productWrapper">
<div class="outerImg">
<div class=" product-image ">
<a href="http://www.snapdeal.com/product/samsung-galaxy-e5/655778241669" v="p" isPartialSearch="false"
categoryId="175" class="hit-ss-logger somn-track prodLink" pogId="655778241669"
pos="3;541" hidOmnTrack="">
<img alt="Samsung Galaxy E5" title= "Samsung Galaxy E5" class="gridViewImage" anim='true' lazySrc="http://n3.sdlcdn.com/imgs/a/s/4/166x194/Samsung-Galaxy-E5-SDL029813270-1-9df7b.jpg" src="" border="0"/>
</a>
</div>
</div>
<div class="hoverProductWrapper product-txtWrapper ">
<div class="product-title">
<a href="http://www.snapdeal.com/product/samsung-galaxy-e5/655778241669" v="p" isPartialSearch="false"
categoryId="175" class="hit-ss-logger somn-track prodLink" pogId="655778241669" pos="3;541" hidOmnTrack="">
Samsung Galaxy E5
</a>
</div>
<a id="prodDetails" rel="nofollow" href="http://www.snapdeal.com/product/samsung-galaxy-e5/655778241669" v="p" isPartialSearch="false"
categoryId="175" class="hit-ss-logger somn-track prodLink" pogId="655778241669" pos="3;541" hidOmnTrack="">
<div class="ratingsWrapper">
<div class="ratingStarsSmall corrClass8" ratings="4.1" ></div>
<div class="lfloat">(26)</div>
</div>
<div class="product-price">
<div>
Rs 15630<span class=""><strike>Rs 19990</strike> <s>(22%)</s></span>
</div>