-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathelle.com1.html
More file actions
6163 lines (4008 loc) · 218 KB
/
Copy pathelle.com1.html
File metadata and controls
6163 lines (4008 loc) · 218 KB
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>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:sa="http://opengraph.socialamp.com/2009/saml"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:sa="http://opengraph.socialamp.com/2009/saml"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:sa="http://opengraph.socialamp.com/2009/saml"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:sa="http://opengraph.socialamp.com/2009/saml"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- title and other meta here -->
<title>Nicole Miller Spring 2015 Ready-to-Wear Collection</title>
<meta name="description" content="See the entire collection from the Nicole Miller Spring 2015 Ready-to-Wear runway show." />
<meta name="keywords" content="Nicole Miller Fall 2014 Ready-to-Wear runway, Nicole Miller 2015 Ready-to-Wear collection, Nicole Miller 2015" />
<!--<meta name="viewport" content="width=device-width">-->
<link rel="shortcut icon" href="/cm/elle/site_images/favicon/favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="shortcut icon" href="/cm/elle/site_images/favicon/favicon.ico" type="image/x-icon" />
<!-- START OF CANONICAL META TAG -->
<link rel="canonical" href="http://www.elle.com/runway/ready-to-wear/spring-2015-rtw/nicole-miller/collection/" />
<!-- //END OF CANONICAL META TAG -->
<!-- Mobile detect -->
<!--XS_mobile_mobiledetect-->
<script id="mobdskdtct" domain=".elle.com">
try{(function(a,b){(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|BB10|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(a.substr(0,
4)))&&!/ipad/i.test(a)&&b()})(navigator.userAgent||navigator.vendor||window.opera,function(){var a=function(a,b,c){if("undefined"!==typeof b){c=c||{};null===b&&(b="",c.expires=-1);var d="";if(c.expires&&("number"===typeof c.expires||c.expires.toUTCString))"number"===typeof c.expires?(d=new Date,d.setTime(d.getTime()+864E5*c.expires)):d=c.expires,d="; expires="+d.toUTCString();var e=c.path?"; path="+c.path:"",f=c.domain?"; domain="+c.domain:"";c=c.secure?"; secure":"";document.cookie=[a,"=",encodeURIComponent(b),
d,e,f,c].join("")}};a("mobile_redir_referrer",document.referrer?document.referrer:"_BLANK",{expires:(new Date).getTime()+6E4,path:"/",domain:".elle.com"});var b;a:{b=document.cookie.split(";");var e;for(e=0;e<b.length;e++){for(var d=b[e];" "===d.charAt(0);)d=d.substring(1,d.length);if(0===d.indexOf("HDMviewmode=")){b=d.substring(12,d.length);break a}}b=null}"desktop"!=b&&"mobile"!=b?(a=document.location,/^\/sweepstakes\/\w+/.test(a.pathname)?
a.replace(a.href.replace(/\/sweepstakes\//,"/sweepstakes/_mobile/")):/^\/archive\/\w+/.test(a.pathname)?(console.log(/^\/archives\/\w+/.test(a.pathname)),a.replace(a.href.replace(/\/archive\//,"/archive/_mobile/"))):/^\/archives\/\w+/.test(a.pathname)?(console.log(/^\/archives\/\w+/.test(a.pathname)),a.replace(a.href.replace(/\/archives\//,"/archives/_mobile/"))):/^\/_mobile\//.test(a.pathname)?console.error("[mobdetect: mobile url detected but on desktop site]"):(console.log("[mobile redirect] MOBILE VIEW: redirecting to: "+
a.protocol+"//"+a.host+"/_mobile"+a.pathname+a.search+a.hash),document.location.replace(a.protocol+"//"+a.host+"/_mobile"+a.pathname+a.search+a.hash))):"mobile"==b?(console.log("[mobile redirect"+b+"] DESKTOP VIEW ENABLED: temporary"),a("HDMviewmode","mobile",{expires:-1,path:"/",domain:".elle.com"})):console.log("[mobile redirect:"+viewdmode+"] DESKTOP VIEW ENABLED: session")})}catch(e$$12){};
</script>
<!--XS_mobile_mobiledetect -->
<!-- End Mobile detect -->
<!-- templates/elle/socialMetaTags.tmpl -->
<meta property="fb:app_id" content="134662310036632" />
<meta property="og:type" content="article" />
<meta property="og:site_name" content="Elle" />
<meta property="og:title" content="Nicole Miller Spring 2015 Ready-to-Wear Collection" />
<meta property="og:description" content="View photos of the Nicole Miller Spring 2015 Ready-to-Wear Collection" />
<meta property="og:url" content="http://www.elle.com/runway/ready-to-wear/spring-2015-rtw/nicole-miller/collection/" />
<meta property="og:image" content="http://www.elle.com/cm/elle/images/s6/elle-01-nyfw-ss15-nicole-miller-v.jpg" />
<!-- /templates/elle/socialMetaTags.tmpl -->
<meta property="og:article:published_time" content="2014-9-5T12:00Z" />
<!-- TMPL xs_js_site_object -->
<script type="text/javascript" id="dataLayer">
var HRST = HRST || {};
HRST.site = {
"name" : "Elle",
"prefix" : "elle",
"domain" : "http://www.elle.com",
"dartName" : ""
};
HRST.article = {
"section" : {
"name" : "Runway Flipbook Types",
"prefix" : "_flipbook_types"
},
"subSection" : {
"name" : "Runway Flipbook",
"prefix" : "collection"
},
"pageUrl" : "/runway/ready-to-wear/spring-2015-rtw/nicole-miller/collection/",
"id" : "17176008",
"type" : "flipbook3",
"template" : "Runway - Flipbook",
"title" : "Nicole Miller Spring 2015 Ready-to-Wear Collection",
"author" : " ",
"publishDate" : {
"year" : "2014",
"month" : "9",
"date" : "5",
"hour" : "12",
"minute" : "00",
"amOrPm" : "AM"
},
"adCategory" : [
{"id": "","name":"","prefix":""}
]
};
</script>
<!-- /TMPL xs_js_site_object -->
<!-- apple touch icon -->
<!-- For iPad with high-resolution Retina display running iOS ? 7: -->
<link rel="apple-touch-icon" sizes="152x152" href="/cm/elle/mobile/site_images/appicon/apple-touch-icon-152x152.png">
<!-- For iPad with high-resolution Retina display running iOS ? 6: -->
<link rel="apple-touch-icon" sizes="144x144" href="/cm/elle/mobile/site_images/appicon/apple-touch-icon-152x152.png">
<!-- For iPhone with high-resolution Retina display running iOS ? 7: -->
<link rel="apple-touch-icon" sizes="120x120" href="/cm/elle/mobile/site_images/appicon/apple-touch-icon-152x152.png">
<!-- For iPhone with high-resolution Retina display running iOS ? 7: -->
<link rel="apple-touch-icon" sizes="114x114" href="/cm/elle/mobile/site_images/appicon/apple-touch-icon-114x114.png">
<!-- For first- and second-generation iPad: -->
<link rel="apple-touch-icon" sizes="76x76" href="/cm/elle/mobile/site_images/appicon/apple-touch-icon-76x76.png">
<!-- For the iPad mini and the first- and second-generation iPad on iOS ? 6: -->
<link rel="apple-touch-icon" sizes="72x72" href="/cm/elle/mobile/site_images/appicon/apple-touch-icon-76x76.png">
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon" sizes="60x60" href="/cm/elle/mobile/site_images/appicon/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="57x57" href="/cm/elle/mobile/site_images/appicon/apple-touch-icon-57x57.png">
<!-- For all legacy mobile devices -->
<link rel="apple-touch-icon" href="/cm/elle/site_images/favicon/apple-touch-icon.png">
<!-- google fonts -->
<link href='http://fonts.googleapis.com/css?family=Merriweather:700,300,300italic,700italic' rel='stylesheet' type='text/css'>
<!-- styles -->
<link rel="stylesheet" href="/cm/elle/styles/global.2014-04-3.css" />
<link rel="stylesheet" href="/cm/elle/styles/_runwayFlipbook.css" />
<link rel="stylesheet" href="/cm/elle/styles/runwayBase.css" />
<!-- /styles -->
<!-- ESP meta tags -->
<!-- /ESP meta tags -->
<!-- top loading scripts -->
<!-- xs_ams_ads_pageads_defer -->
<script>
// TODO: evaluate moving this code to where page-ads.js is deferred
var docCookies = document.cookie.split(';');
var origRefer = null;
for(var i=0;i < docCookies.length;i++) {
var c = docCookies[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf("original_referrer=") == 0) {
origRefer = c.substring("original_referrer=".length,c.length);
}
}
// TODO: this function should be moved into a library file
function getWidth() {
screen_width = null;
if(window.screen != null)
screen_width = window.screen.availWidth;
if(window.innerWidth != null)
screen_width = window.innerWidth;
if(document.body != null)
screen_width = document.body.clientWidth;
return screen_width;
}
// TODO: this function should be moved into a library file
function getHeight() {
screen_height = null;
if(window.screen != null)
screen_height = window.screen.availHeight;
if(window.innerHeight != null)
screen_height = window.innerHeight;
if(document.body != null)
screen_height = document.body.clientHeight;
return screen_height;
}
(function(){
var scriptSrc = '/ams/page-ads.js?ad_category_prefix=&ad_sub_category_prefix=&ams_promo=&amz_browse_node_ids=&amz_search_indexes=&article_type_prefix=flipbook3&browser_path=%2Frunway%2Fready-to-wear%2Fspring-2015-rtw%2Fnicole-miller%2Fcollection%2F&cat_prefixes=&keywords=&position_list=ams_circ_elm_arrival%2Cams_circ_elm_footer_ad%2Cams_circ_elm_persistent_footer%2Cams_circ_elm_sub_nav_link%2Cams_digital_elm_foot_link%2Cams_elm_circ_takeover%2Cams_elm_like_gate§ion_prefix=collection&site_prefix=elle&sub_cat_prefixes=&subdomain=www&url_name=nicole-miller-spring-2015-rtw-collection';
var pageAdsParams = {};
var paramsArray = scriptSrc.split("/page-ads.js?")[1].split("&");
for (var i = 0; i < paramsArray.length; i++){
var parameter = paramsArray[i].split("=");
pageAdsParams[parameter[0]] = unescape(parameter[1]);
}
window["pageAdsParams"] = pageAdsParams;
var pageAds = {};
var positionList = scriptSrc.match(/position_list=((?!&).)*/)[0].split("position_list=")[1].split("%2C");
for (var i = 0; i < positionList.length; i++){
//pageAds[positionList[i]] = '\x3Cscript>pageAdsDefer("'+positionList[i]+'");\x3C/script>';
pageAds[positionList[i]] = "<!--PAGEADSDEFER:"+positionList[i]+"-->\x3Cscript>console.error('AMS_POSITION DOC.WRITE attempt @"+positionList[i]+"')\x3C/script>";
}
window["pageAds"] = pageAds;// need to export this sucker out so that the inline scripts that render these out.. :-(
})();
</script>
<!-- /xs_ams_ads_pageads_defer -->
<!--xs_ensighten_bootstrap_script.tmpl-->
<script type="text/javascript">
(function(d) {
var e = d.createElement('script');
if (document.cookie.indexOf("nsghtn=dev") > -1) {
e.src = d.location.protocol + '//nexus.ensighten.com/hearst/mag-dev/Bootstrap.js';
console.warn (e.src);
}
else {
e.src = d.location.protocol + '//nexus.ensighten.com/hearst/mag/Bootstrap.js';
}
e.async = true;
d.getElementsByTagName("head")[0].appendChild(e);
}(document));
</script>
<!--//xs_ensighten_bootstrap_script.tmpl-->
<!-- to reduce calls, this is a combination of /cm/shared/scripts/jquery-1.7.2.min.js, /cm/shared/scripts/jquery.mobile-1.1.0.min.js, /cm/shared/scripts/jquery-ui-1.8.5.custom.min.js -->
<script src="/cm/shared/scripts/modernizr-2.5.3.min.js"></script>
<script src="/cm/shared/scripts/underscore-min.1.2.3.js"></script>
<script src="/cm/shared/scripts/jquery-runway.js"></script>
<link rel="stylesheet" href="/cm/elle/styles/runwayBase.css" />
<span id="ams_gpt_pre_elm" class="ams-mixed-inline"><script type='text/javascript'>
/********************************************************
Top of page for Magnus page speed sites
/admin/ams/ams_creative/index.html?mode=view&id=22416
Updated 12/18/14
*******************************************************/
window.console = window.console || {log: function() {}};
window.gptLayer = window.gptLayer || [];
window.gptLayer.kv = window.gptLayer.kv || [];
window.gptLayer.getCookie = function(name) {
var nameEQ = name + "=",
ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) === ' ') {
c = c.substring(1, c.length);
}
if (c.indexOf(nameEQ) === 0) {
var result = c.substring(nameEQ.length, c.length);
return result;
}
}
return '';
};
window.gptLayer.setCookieHours = function(name, value, hours) {
var expDate = new Date(),
cookieValue;
expDate.setDate(expDate.getDate());
expDate.setHours(expDate.getHours() + hours);
cookieValue = encodeURIComponent(value) + ((hours === null) ? '' : ';expires=' + expDate.toUTCString() + '; path=/');
document.cookie = name + '=' + cookieValue;
};
window.gptLayer.addKV = function(name,value) {
window.gptLayer.kv = window.gptLayer.kv || [];
gptLayer.kv[name] = gptLayer.kv[name] || [];
gptLayer.kv[name].push(value);
};
function buildScriptTag(src,success,fail){
var script = document.createElement('script');
var timeoutid;
function runSuccess(obj){
clearTimeout(timeoutid);
try{
success(this);
} catch(e){}
}
function runFail(){
fail(this);
}
// prelim check to see if script tag already exists...
for (var i = 0,s = document.getElementsByTagName("script"); i < s.length; i++){
if(s[i].src && s[i].src == src){
runFail();
console.warn(s[i],"detected - skipping call")
return;
}
}
script.src = src;
if(script.addEventListener) {
script.addEventListener("load",function(){runSuccess(this);},false);
}else if(script.readyState) {
script.onreadystatechange = function(){runSuccess(this);};
}
script.onerror = function(){
clearTimeout(timeoutid);
runFail();
}
timeoutid = setTimeout(runFail,2500);
document.getElementsByTagName("HEAD")[0].appendChild(script);
}
var timerStart = Date.now();
var consoleUpdate = function (msg) {console.log (msg + ":" + (Date.now()-timerStart) + "ms");}
var ad_site="elle";
var adsAsap = "yes";
var googletag = googletag || {}; // var
googletag.cmd = googletag.cmd || [];
var gptJS = function() {
var gads = document.createElement('script'); // var
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol; // var
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0]; //var
node.parentNode.insertBefore(gads, node);
}
// Immediate or deferred
if (typeof window.adsAsap == "undefined") {
$(window).load(gptJS);
}
else {
gptJS();
}
// AMZN
if (!(document.location.href.indexOf("_mobile") > -1) && (location.href.indexOf("misquincemag.com") < 0) && (location.href.indexOf("seventeen.com") < 0)) {
window.adScripts = window.adScripts || [];
adScripts.AMZN = '';
window.gptLayer.amznCallback = function() {
googletag.cmd.push(function() {
googletag.pubads().clearTargeting('amznslots');
amznads.setTargetingForGPTAsync('amznslots');
});
adScripts.AMZN = {status: 'complete'};
consoleUpdate('AMZN Pass');
};
buildScriptTag("http://c.amazon-adsystem.com/aax2/amzn_ads.js",function(){
try {
amznads.getAdsCallback('3049', gptLayer.amznCallback);
} catch (e) {}
},function(){
adScripts.AMZN = {status: "complete"};
consoleUpdate("AMZN Fail");
});
} else {
adScripts.AMZN = {status: "complete"};
consoleUpdate("AMZN Skipped");
}
if (!(document.location.href.indexOf("_mobile") > -1) && (location.href.indexOf("misquincemag.com") < 0) && (location.href.indexOf("seventeen.com") < 0) ) {
window.adScripts = window.adScripts || [];
adScripts.AS='';
var asiPqTag = false;
window.ad_asiPlacements=[];
buildScriptTag("http://pq-direct.revsci.net/pql?placementIdList=rtXU6U,1lNiOU,7VhOTk&cb="+Date.now(),function(){
if (typeof asiPlacements != "undefined") {
for (var p in asiPlacements) {
window["ASPQ_" + p] = "";
for (var key in asiPlacements[p].data) {
window["ASPQ_" + p] += "PQ_" + p + "_" + key;
ad_asiPlacements.push("PQ_" + p + "_" + key);
}
}
}
adScripts.AS = {status: "complete"};
consoleUpdate("AS Pass");
},function(){
adScripts.AS = {status: "complete"};
consoleUpdate("AS Fail");
});
} else {
adScripts.AS = {status: "complete"};
consoleUpdate("AS Skipped");
}
// CAS
if ( (!location.hostname.match(/seventeen|misquincemag/i)) ) {
adScripts.CAS = [];
if ( (!location.href.match(/_mobile/i)) || (document.documentElement.clientWidth > 640) ) {
window.IndexArgs = {
'device': 'D',
'siteID': 158710,
'slots': [
{'id': '1', 'width': 728, 'height': 90},
{'id': '2', 'width': 728, 'height': 90},
{'id': '3', 'width': 300, 'height': 250},
{'id': '4', 'width': 300, 'height': 600},
{'id': '5', 'width': 300, 'height': 250},
{'id': '6', 'width': 300, 'height': 600}
]
};
} else {
window.IndexArgs = {
'device': 'M',
'siteID': 159589,
'slots':[
{'id': '3', 'width': 300, 'height': 250},
{'id': '5', 'width': 300, 'height': 250},
{'id': '7', 'width': 300, 'height': 250},
{'id': '8', 'width': 320, 'height': 50}
]
};
}
window.index_set_targets = function() {
for ( var i=0; i < index_slots.length; i++ ) {
var index_params = index_slots[i].split( '_' );
var op = index_params.shift( );
var k = op;
var v = index_params.join( '_' );
if (k === 'P') {
gptLayer.addKV(k,v);
}
if (k === 'O') {
gptLayer.addKV(k + IndexArgs.device, v);
}
}
adScripts.CAS = {
status: 'complete'
};
consoleUpdate('CAS Pass');
};
buildScriptTag('http://js.indexww.com//ht/hdm.js', function() {
// Do index_set_targets();
}, function(){
adScripts.CAS = {status: "complete"};
consoleUpdate("CAS Fail");
});
}
// LPID
var lpid = gptLayer.getCookie('lpid');
if (lpid === '') {
adScripts.LPID = [];
var lotamePid;
extractPid = function(lotameData) {
gotId = lotameData.Profile.pid;
gptLayer.addKV('lpid', gotId);
document.cookie ='lpid=' + gotId + '; path=/';
adScripts.LPID = {
status: 'complete'
};
consoleUpdate('LPID Pass');
};
buildScriptTag('//ad.crwdcntrl.net/5/c=25/pe=y/callback=extractPid');
} else {
gptLayer.addKV('lpid', lpid);
consoleUpdate('LPID Skipped');
}
window._mNInslDisplay = false;
window._mNInslMobDisplay = false;
var ad_mn = {testsite: "12345678&size=641x481",cosmopolitan: "675116702&size=641x481",esquire: "262261654&size=641x481",goodhousekeeping: "319348987&size=641x481",elle: "535658795&size=641x481"}
ad_mn.ipad = {testsite: "12345678&size=641x481",cosmopolitan: "965157231&size=642x482",esquire: "211579157&size=642x482",goodhousekeeping: "455778977&size=642x482",elle: "426886870&size=642x482"}
if (navigator.userAgent.match(/iPad/i)) {ad_mn = ad_mn.ipad;}
if ( (location.pathname !== "/") && (document.location.href.indexOf("_mobile") < 0) && ( (ad_site==="cosmopolitan") || (ad_site==="elle") || (ad_site==="esquire") || (ad_site==="goodhousekeeping") ) )
{
window.adScripts = window.adScripts || [];
adScripts.MN='';
buildScriptTag("http://contextual.media.net/inslmedianet.js?cid=8CU485480&crid="+ad_mn[ad_site],function(){
// Pause a bit
setTimeout(function(){
adScripts.MN = {status: "complete"};
consoleUpdate("MN Pass");
},500);
},function(){
adScripts.MN = {status: "complete"};
consoleUpdate("MN Fail");
});
} else {
adScripts.MN = {status: "complete"};
consoleUpdate("MN Skipped");
}
/********************************************************
/Preload
*******************************************************/
</script>
</span>
<!-- START OF xs_standout_tag.tmpl -->
<!-- //END OF xs_standout_tag.tmpl -->
<script> if ( !window.$h ){ window.$h = {}; } </script> <!-- needed for epic -->
<!-- generate key-value pairs for runway ad targeting -->
<script>
var runwayString = (function(){
var keys, paths, zipped, mapped, string;
keys = ['runwaytype','season','designer','fliptype'];
paths = window.location.pathname.replace(/^\//,'').replace(/\/$/,'').split('/');
paths.shift();
zipped = _.zip(keys,paths);
mapped = _.map(zipped,function(arr){
return arr.join('=');
});
string = mapped.join(';');
return string;
})();
</script>
<script>
var contentModel = {
articleId: "17176008",
sections: [
{
siteId: 817,
sectionId: 11561,
sectionName: "Runway Flipbook",
sectionFullPath: "/_flipbook_types/collection/",
sectionPrefix: "collection",
isDevelopingStory: 0,
sponsored: 0
},
{
siteId: 817,
sectionId: 11566,
sectionName: "Ready To Wear",
sectionFullPath: "/_runway_types/ready-to-wear/",
sectionPrefix: "ready-to-wear",
isDevelopingStory: 0,
sponsored: 0
},
{
siteId: 817,
sectionId: 12322,
sectionName: "Nicole Miller",
sectionFullPath: "/_designers/nicole-miller/",
sectionPrefix: "nicole-miller",
isDevelopingStory: 0,
sponsored: 0
},
{
siteId: 817,
sectionId: 47065,
sectionName: "Spring 2015 Ready-to-Wear",
sectionFullPath: "/_seasons/spring-2015-rtw/",
sectionPrefix: "spring-2015-rtw",
isDevelopingStory: 0,
sponsored: 0
}
]
};
</script>
</head>
<body class="_runwayFlipbook ">
<!-- headerVariables.tmpl -->
<span id="ams_mbox_elm_global" class="ams-mixed-inline"><!-- No creatives found for pos_name: ams_mbox_elm_global (3092) and campaign_id : -->
</span>
<span id="ams_elm_circ_takeover" class="ams-mixed-defer"></span>
<span id="ams_elm_like_gate" class="ams-mixed-defer"></span>
<!-- /headerVariables.tmpl -->
<span id="ams_elm_checkm8" class="ams-mixed-inline"><div id="gpt_outofpage"></div>
<script type="text/javascript">
if (typeof tntTest === "undefined") {
if (typeof ad_setUpTop==="undefined"){
var gptLayer = window.gptLayer || [];
gptLayer.push({
'id': 'gpt_outofpage',
'outofpage': 1,
'newpos': '0D',
'load': 'nobid'
});
}
}
</script>
</span>
<div id="fb-root"></div>
<!-- /metaHead.tmpl -->
<div class="site g-full">
<header class="siteHeader g-full clearfix">
<div id="head-article-list-div">
<div class="apa-div">
<div class="apa-img-div">
<a href="/horoscopes/2015-astrologicial-guide"><img class="apa-img" src="/cm/elle/images/1N/elle-02-astro-yRxLbV-t3.jpg" /></a>
</div>
<div class="apa-info-div">
<span class="apa-section-span apa-info-f"></span>
<a class="apa-title-a" href="/horoscopes/2015-astrologicial-guide">Star Signs </a>
<span class="apa-teaser-span apa-info-f">The AstroTwins predict what 2015 has in store for you</span>
<div class="clear"></div>
</div>
</div>
<div class="apa-div">
<div class="apa-img-div">
<a href="/pop-culture/celebrities/2014-hot-abs"><img class="apa-img" src="/cm/elle/images/Zd/elle-00-shirtless-guys-h-t3.jpg" /></a>
</div>
<div class="apa-info-div">
<span class="apa-section-span apa-info-f"></span>
<a class="apa-title-a" href="/pop-culture/celebrities/2014-hot-abs">Fit Bit</a>
<span class="apa-teaser-span apa-info-f">From Zac to Becks: the hottest man abs of 2014 </span>
<div class="clear"></div>
</div>
</div>
<div class="apa-div apa-last-div">
<div class="apa-img-div">
<a href="/fashion/spotlight/spring-2015-campaigns"><img class="apa-img" src="/cm/elle/images/w1/elle-03-eleven-paris-t3.jpg" /></a>
</div>
<div class="apa-info-div">
<span class="apa-section-span apa-info-f"></span>
<a class="apa-title-a" href="/fashion/spotlight/spring-2015-campaigns">Campaign Game</a>
<span class="apa-teaser-span apa-info-f">The best fashion spots from spring 2015</span>
<div class="clear"></div>
</div>
</div>
</div>
<div class="headerBranding g-full clearfix altNav">
<div class="logoContainer">
<a href="/"><img src="/cm/elle/site_images/logo.png" title="ELLE" alt="ELLE" width="122" height="100%" /></a>
</div>
</div>
<nav class="siteNavigation altNav">
<form id="nav-search" name="searchForm" role="search" action="/search/" method="get">
<span id="nav-search-x"></span>
<input type="text" class="searchInput g-16" name="q" value="" autocomplete="off" placeholder="Search ELLE.com">
<button type="submit" class="searchButton"></button>
<div class="clear"></div>
</form>
<ul class="navList g-full clearfix">
<li class="navFashion navItem first">
<a class="navLink" href="/fashion/">Fashion</a>
<div class="subnav"><div class="subnavInner">
<a class="feature" href="http://www.elle.com/fashion/spotlight/shop-it-iconic-cartoons">
<div class="lazyImage small_new" data-src="/cm/elle/images/sR/elle-00-cartoon-opener-v-smn.jpg">
<noscript>
<img src="/cm/elle/images/sR/elle-00-cartoon-opener-v-smn.jpg" alt="" />
</noscript>
</div>
<p class="featureP">Shop It: The 13 Most Iconic Cartoon Outfits</p>
</a>
<ul class="subnavList">
<li><a href="/runway/">Runway</a></li>
<li><a href="/fashion/fashion-week/">Fashion Week</a></li>
<li><a href="/fashion/spotlight/">Fashion Spotlight</a></li>
<li><a href="/fashion/trend-reports/">Trend Reports</a></li>
<li><a href="/fashion/celebrity-style/">Celebrity Style</a></li>
<li><a href="/fashion/designers/">Designer Files</a></li>
<li><a href="/video/fashion-videos">Fashion Videos</a></li>
<li class="last"><a href="/life-love/entertaining-design/fall-weddings-style">ELLE's Guide to Weddings</a></li>
</ul>
<div class="clear"></div>
</div></div>
</li>
<li class="navHair navItem">
<a class="navLink" href="/beauty/">Beauty</a>
<div class="subnav"><div class="subnavInner">
<a class="feature" href="http://www.elle.com/beauty/health-fitness/practical-magic">
<div class="lazyImage small_new" data-src="/cm/elle/images/VK/elle-practical-magic-v-smn.jpg">
<noscript>
<img src="/cm/elle/images/VK/elle-practical-magic-v-smn.jpg" alt="" />
</noscript>
</div>
<p class="featureP">How This 'Functional Fitness' Workout Transformed My Body</p>
</a>
<ul class="subnavList">
<li><a href="/beauty/complexion">Complete Complexion</a></li>
<li><a href="/beauty/hair/">Hair</a></li>
<li><a href="/beauty/makeup-skin-care/">Makeup & Skincare</a></li>
<li class="last"><a href="/beauty/health-fitness/">Health & Fitness</a></li>
</ul>
<div class="clear"></div>
</div></div>
</li>
<li class="navAccessories navItem">
<a class="navLink" href="/accessories/">Accessories</a>
<div class="subnav"><div class="subnavInner">
<a class="feature" href="http://www.elle.com/accessories/bags-shoes-jewelry/best-shoes-2014">
<div class="lazyImage small_new" data-src="/cm/elle/images/s6/elle-01-nyfw-ss15-nicole-miller-v-smn.jpg">
<noscript>
<img src="/cm/elle/images/s6/elle-01-nyfw-ss15-nicole-miller-v-smn.jpg" alt="" />
</noscript>
</div>
<p class="featureP">Shop the Best Shoes of 2014</p>
</a>
<ul class="subnavList">
<li><a href="/accessories/bags-shoes-jewelry/">Accessories Spotlight</a></li>
<li><a href="/accessories/trends/">Trends</a></li>
<li class="last"><a href="/accessories/shop-accessories/">Shop Accessories</a></li>
</ul>
<div class="clear"></div>
</div></div>
</li>
<li class="navStreet navItem">
<a class="navLink" href="/fashion/street-chic/">Street</a>
<div class="subnav"><div class="subnavInner">
<a class="feature" href="http://www.elle.com/news/street-chic-daily/street-style-milan-oct-14">
<div class="lazyImage small_new" data-src="/cm/elle/images/M1/elle-10-mfw-v-xln-smn.jpg">
<noscript>
<img src="/cm/elle/images/M1/elle-10-mfw-v-xln-smn.jpg" alt="" />
</noscript>
</div>
<p class="featureP">Street Style: Milan</p>
</a>
<ul class="subnavList">
<li><a href="/news/street-chic-daily/">Daily Street Chic</a></li>
<li><a href="/fashion/street-chic/street-style-photos-paris-fashion-week-fall-2014">Paris Fashion Week</a></li>
<li><a href="/fashion/street-chic/milan-fashion-week-street-style-photos-fall-2014">Milan Fashion Week</a></li>
<li><a href="/fashion/street-chic/london-fashion-week-street-style-photos-fall-2014">London Fashion Week</a></li>
<li class="last"><a href="/fashion/street-chic/new-york-fall-2014-fashion-week-street-style">New York Fashion Week</a></li>
</ul>
<div class="clear"></div>
</div></div>
</li>
<li class="navPop navItem">
<a class="navLink" href="/pop-culture/">Culture</a>
<div class="subnav"><div class="subnavInner">
<a class="feature" href="http://www.elle.com/pop-culture/celebrities/celebrity-baby-announcements-funny">
<div class="lazyImage small_new" data-src="/cm/elle/images/Zt/elle-opener-v-smn.jpg">
<noscript>
<img src="/cm/elle/images/Zt/elle-opener-v-smn.jpg" alt="" />
</noscript>
</div>
<p class="featureP">The 14 Best Celebrity Baby Announcements</p>
</a>
<ul class="subnavList">
<li><a href="/pop-culture/cover-shoots/">Cover Shoots</a></li>
<li><a href="/pop-culture/celebrities/">Celebrity Spotlight</a></li>
<li><a href="/pop-culture/reviews/">Movies, TV, Music & Books</a></li>
<li><a href="/pop-culture/best/">Culture Club</a></li>
<li class="last"><a href="/video/celebrity-videos">Celebrity Videos</a></li>
</ul>
<div class="clear"></div>
</div></div>
</li>
<li class="navLife navItem">
<a class="navLink" href="/life-love/">Life & Love</a>
<div class="subnav"><div class="subnavInner">
<a class="feature" href="http://www.elle.com/life-love/entertaining-design/organized-decorating-tips">
<div class="lazyImage small_new" data-src="/cm/elle/images/Nl/elle-living-00-v-smn.jpg">
<noscript>
<img src="/cm/elle/images/Nl/elle-living-00-v-smn.jpg" alt="" />
</noscript>
</div>
<p class="featureP">7 Easy Tweaks to Improve Your Space</p>
</a>
<ul class="subnavList">
<li><a href="/life-love/personal-style/">Personal Style</a></li>
<li><a href="/life-love/sex-relationships/">Sex & Relationships</a></li>
<li><a href="/life-love/society-career/">Society, Career & Power</a></li>
<li><a href="/life-love/entertaining-design/">Entertaining & Design</a></li>
<li><a href="/life-love/travel/">Travel</a></li>
<li><a href="/life-love/ask-e-jean/">Ask E. Jean</a></li>
<li><a href="/video/advice-videos/">Advice Videos</a></li>
<li class="last"><a href="http://www.elledecor.com">ELLE Decor</a></li>
</ul>
<div class="clear"></div>
</div></div>
</li>
<!--
<li class="navRunway navItem">
<a class="navLink" href="/runway/">Runway</a>
<div class="subnav"><div class="subnavInner">
<a class="feature" href="http://www.elle.com/runway/ready-to-wear/spring-2014-rtw/alexander-mcqueen/collection/">
<div class="lazyImage small_new" data-src="/cm/elle/images/1o/elle-alexander-mcqueen-spring-2014-rtw-01-de-smn.jpg"></div>
<p class="featureP">Alexander McQueen Spring 2014 Ready-to-Wear Collection</p>
</a>
<ul class="subnavList">
<li><a href="/runway/ready-to-wear/spring-2014-rtw/">Spring 2014 Ready-To-Wear</a></li>
<li><a href="/runway/haute-couture/fall-2013-couture/">Fall 2013 Haute Couture</a></li>
<li><a href="/runway/resort/resort-2014/">Resort 2014</a></li>
<li><a href="/runway/ready-to-wear/fall-2013-rtw/">Fall 2013 Ready-To-Wear</a></li>
<li><a href="/runway/haute-couture/spring-2013-couture/">Spring 2013 Haute Couture</a></li>
<li><a href="/runway/pre-fall/pre-fall-2013/">Pre-Fall 2013</a></li>
<li class="last"><a href="/video/runway-videos">Runway Videos</a></li>
</ul>
<div class="clear"></div>
</div></div>
</li>
-->
<li class="navNews navItem">
<a class="navLink" href="/news/">News</a>
<div class="subnav"><div class="subnavInner">
<a class="feature" href="http://www.elle.com/news/beauty-makeup/best-workouts-2015">
<div class="lazyImage small_new" data-src="/cm/elle/images/fm/adrianalima-h-smn.jpg">
<noscript>
<img src="/cm/elle/images/fm/adrianalima-h-smn.jpg" alt="" />
</noscript>
</div>
<p class="featureP">The Hottest Workouts for 2015</p>
</a>
<ul class="subnavList">
<li><a href="/news/fashion-accessories/">Accessories News</a></li>
<li><a href="/news/beauty-makeup/">Beauty News</a></li>
<li><a href="/news/culture/">Culture News</a></li>
<li><a href="/news/fashion-style/">Fashion News</a></li>
<li><a href="/news/lifestyle/">Life & Love News</a></li>
<li><a href="/news/shop/">Shopping News</a></li>
<li class="last"><a href="/news/street-chic-daily/">Street Chic Daily</a></li>
</ul>
<div class="clear"></div>
</div></div>
</li>
<li class="navHoroscopes navItem">
<a class="navLink" href="/horoscopes/">Horoscopes</a>
<div class="subnav"><div class="subnavInner">
<a class="feature" href="http://www.elle.com/horoscopes/2015-astrologicial-guide">
<div class="lazyImage small_new" data-src="/cm/elle/images/vh/elle-02-astro-v-smn.jpg">
<noscript>
<img src="/cm/elle/images/vh/elle-02-astro-v-smn.jpg" alt="" />
</noscript>
</div>
<p class="featureP">Your Astrological Guide to 2015</p>
</a>
<ul class="subnavList">
<li><a href="/horoscopes/daily/">Daily</a></li>