-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathnypost.com2.html
More file actions
1697 lines (1591 loc) · 93.9 KB
/
Copy pathnypost.com2.html
File metadata and controls
1697 lines (1591 loc) · 93.9 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 IE 6]>
<html id="ie6" lang="en">
<![endif]-->
<!--[if IE 7]>
<html id="ie7" lang="en">
<![endif]-->
<!--[if IE 8]>
<html id="ie8" lang="en">
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
<html xmlns:fb="http://ogp.me/ns/fb#" lang="en">
<!--<![endif]-->
<!--
generated in 1.844 seconds
96806 bytes batcached for 300 seconds
-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta charset="UTF-8" />
<meta name="viewport" id="nypviewport" content="" />
<script type="text/javascript">
if ( navigator.userAgent.match(/IEMobile\/10\.0/) ) {
var msViewportStyle = document.createElement( 'style' );
msViewportStyle.appendChild(
document.createTextNode( '@-ms-viewport{ width:auto!important }' )
);
document.getElementsByTagName( 'head' )[0].appendChild( msViewportStyle );
}
var mvp = document.getElementById('nypviewport');
if (screen.width <= 640) {
mvp.setAttribute('content','width=device-width, initial-scale=1');
}
</script>
<meta name="copyright" content="Copyright 2015 NYP Holdings. All rights reserved."/>
<link rel="apple-touch-icon" href="http://s0.wp.com/wp-content/themes/vip/nypost/static/images/apple-icons/nypost/apple-icon.png?m=1391172942g" />
<link rel="apple-touch-icon" sizes="57x57" href="http://s0.wp.com/wp-content/themes/vip/nypost/static/images/apple-icons/nypost/apple-icon-57x57.png?m=1391172942g" />
<link rel="apple-touch-icon" sizes="114x114" href="http://s0.wp.com/wp-content/themes/vip/nypost/static/images/apple-icons/nypost/apple-icon-114x114.png?m=1391172942g" />
<link rel="apple-touch-icon" sizes="144x144" href="http://s0.wp.com/wp-content/themes/vip/nypost/static/images/apple-icons/nypost/apple-icon-144x144.png?m=1391172942g" />
<meta name="p:domain_verify" content="701c0e13bca342086174f2a19ed49228"/>
<link rel="shortcut icon" type="image/x-icon" href="http://s0.wp.com/wp-content/themes/vip/nypost/static/images/favicon-nypost/favicon.ico?m=1405452510g" />
<title>Surfer survives ‘Jaws’ moment with great white shark | New York Post</title>
<script type="text/javascript" src="//use.typekit.net/yoc0pwu.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="apple-touch-icon" href="http://s0.wp.com/wp-content/themes/vip/nypost/static/images/favicon.png?m=1391172942g" />
<script src='//r-login.wordpress.com/remote-login.php?action=js&host=nypost.com&id=56757169&t=1420285724&back=http%3A%2F%2Fnypost.com%2F2014%2F12%2F29%2Fsurfer-survives-jaws-moment-with-great-white-shark%2F' type="text/javascript"></script>
<script type="text/javascript">
/* <![CDATA[ */
if ( 'function' === typeof WPRemoteLogin ) {
document.cookie = "wordpress_test_cookie=test; path=/";
if ( document.cookie.match( /(;|^)\s*wordpress_test_cookie\=/ ) ) {
WPRemoteLogin();
}
}
/* ]]> */
</script>
<script type="text/javascript">
/* <![CDATA[ */
function addLoadEvent(func){var oldonload=window.onload;if(typeof window.onload!='function'){window.onload=func;}else{window.onload=function(){oldonload();func();}}}
/* ]]> */
</script>
<script>
window.Krux||((Krux=function(){Krux.q.push(arguments);}).q=[]);
(function(){
function retrieve(n){
var m, k='kx'+n;
if (window.localStorage) {
return window.localStorage[k] || "";
} else if (navigator.cookieEnabled) {
m = document.cookie.match(k+'=([^;]*)');
return (m && unescape(m[1])) || "";
} else {
return '';
}
}
Krux.user = retrieve('user');
Krux.segments = retrieve('segs') && retrieve('segs').split(',') || [];
})();
</script>
<script type="text/javascript" src="http://static.proximic.com/t/newscorp.js"></script>
<link rel='stylesheet' id='all-css-0' href='http://s0.wp.com/_static/??-eJx9jl0KAjEMhC9kNy64/jyIZylpcNNt2rJpEW9vK4gIsm+Z4ZvMwCMbTLFQLCDV5FDvHBVUONAzr8kTll81oOoO/scCL6TgqWSLi3mrLRzTSs2XbEsnhBxbCiQN24pJPn5S/Zxb17eGI4bq2opmgLM6c/ugg3DsyE2u42E8n8Zp2l/8C/EWXfg=' type='text/css' media='all' />
<link rel='stylesheet' id='jquery-mobile-css-css' href='http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.css?ver=1.3.1' type='text/css' media='all and (max-width: 640px)' />
<link rel='stylesheet' id='all-css-2' href='http://s0.wp.com/_static/??-eJxljksOwjAMBS9E60LLggXiLE5qNUb5KXaoensCAlGJlUfyG/vBmjubolJUUEeBBB6cIW45iYIoKts2Nk/iiFQgJMOeeitygJ0bapd9XTgKrDwvr2RjxaVg+NGftnv51Qt5QqHOYpx5Rm1rQfbqSoWmf873Uo3YwuZd5Raux+k0DNNlPI/3JwBET9o=' type='text/css' media='all' />
<link rel='stylesheet' id='allandmin-width640px-css-2' href='http://s1.wp.com/wp-content/themes/vip/nypost/static/stylesheets/screen.css?m=1419368610g' type='text/css' media='all and (min-width: 640px)' />
<link rel='stylesheet' id='font-awesome-css' href='//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css?ver=0.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='all-css-4' href='http://s1.wp.com/_static/??-eJx9j9EKwjAMRX/IGiZD64P4LV2JbUfblCbD37ejIopjL8m95J6QwLMoS1kwC6RFlbi4kBkw0Rx6PVrmAwTIJKEl+SP6YJt3SCqSNRIo/xj1iCbUPbTiFMk16aClvuweVIilrwb2pq7wu+9fmbH2pzblHyseEzL4EVykycQ1cE+3YRzOWl/16TK/ALZQfYg=' type='text/css' media='all' />
<script type='text/javascript' src='http://s0.wp.com/_static/??-eJyFjlsKwjAQRTdkHi0K/ohriXFaJjaTmEladPWNYEBB7NeFuWc4Vy1R2EAZKCvHyocLTiAKQzJjvQmkIUjHO1U5JDuVK/ALdPcC6fGOTUB4HJPJID1Sgz+sMXD2wFyVP9pvFdKMsGxiDnI09iYSMD7hz8CC7aWgtCG1jWd/6vZaH45dr3u3AmsMbZ4='></script>
<script type='text/javascript' src='http://d134l0cdryxgwa.cloudfront.net/backplane.js?ver=4.1-beta2-30797'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var nypost_meme_gen_data = {"ajaxurl":"https:\/\/thenypost.wordpress.com\/wp-admin\/admin-ajax.php","generate_action":"generate_meme","more_action":"more_memes","nonce":"nypost_meme_gen_nonce"};
/* ]]> */
</script>
<script type='text/javascript' src='http://s0.wp.com/_static/??-eJydU0FuxCAM/FAD2u1W2h6qPqIvIOAQbwFTYzab35e0UY+ViOCADDMeZmS95AGTDdVB0be2vyrwqivuJ1VRLeg8iIqY1K086YawlASSaJkhNtwds05rpiK6iBG0G5MPNJrQg3BTVj6LCuQ9sKI7MKODHorfwrAx9aO86QHt/liiTzyiMbYXg4cEbIS4hyBTCOWA1GK5IR1kmbvaoZXKMGHoSnNvKlTt/LFgPuJRCS3/MtPSg/0D/bxuX+7yKtKIoUvrZJJdR3p0acSYA0RybUL+n6scqsdUNEMAU2CwJjl0Rtp1MRhk5roR7jNa6thSxvGQ2ZYYRjLshp2tP22mVgF1buvIKNUkjpbNjvf4drqcrq/n5+vL5fYNAOLENQ=='></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://thenypost.wordpress.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://s1.wp.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress.com" />
<link rel='canonical' href='http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/' />
<link rel='shortlink' href='http://nyp.st/13OFYyy' />
<link rel="alternate" type="application/json+oembed" href="https://public-api.wordpress.com/oembed/1.0/?format=json&url=http%3A%2F%2Fnypost.com%2F2014%2F12%2F29%2Fsurfer-survives-jaws-moment-with-great-white-shark%2F&for=wpcom-auto-discovery" /><link rel="alternate" type="application/xml+oembed" href="https://public-api.wordpress.com/oembed/1.0/?format=xml&url=http%3A%2F%2Fnypost.com%2F2014%2F12%2F29%2Fsurfer-survives-jaws-moment-with-great-white-shark%2F&for=wpcom-auto-discovery" />
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="article" />
<meta property="og:title" content="Surfer survives 'Jaws' moment with great white shark" />
<meta property="og:url" content="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/" />
<meta property="og:description" content="A surfer survived being attacked and dragged underwater by a juvenile great white shark off the central California coast Sunday. California State Park Ranger Supervisor Robert Colligan said the att..." />
<meta property="article:published_time" content="2014-12-29T15:32:29+00:00" />
<meta property="article:modified_time" content="2014-12-30T08:14:29+00:00" />
<meta property="article:author" content="http://nypost.com/author/fox-news/" />
<meta property="og:site_name" content="New York Post" />
<meta name="twitter:site" content="@nypost" />
<meta name="twitter:image:src" content="http://thenypost.files.wordpress.com/2014/12/shark.jpg?w=150" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:creator" content="@nypost" />
<meta property="article:publisher" content="https://www.facebook.com/WordPresscom" />
<meta name="twitter:title" content="Surfer survives 'Jaws' moment with great white shark" />
<meta name="twitter:description" content="A surfer survived being attacked and dragged underwater by a juvenile great white shark off the central California coast Sunday. California State Park Ranger Supervisor Robert Colligan said the" />
<meta name="twitter:image" content="http://thenypost.files.wordpress.com/2014/12/shark.jpg?w=150" />
<meta property="og:image" content="http://thenypost.files.wordpress.com/2014/12/shark.jpg" />
<meta property="og:image:secure_url" content="https://i2.wp.com/thenypost.files.wordpress.com/2014/12/shark.jpg" />
<link rel='openid.server' href='http://thenypost.wordpress.com/?openidserver=1' />
<link rel='openid.delegate' href='http://thenypost.wordpress.com/' />
<link rel="search" type="application/opensearchdescription+xml" href="http://nypost.com/osd.xml" title="New York Post" />
<link rel="search" type="application/opensearchdescription+xml" href="http://wordpress.com/opensearch.xml" title="WordPress.com" />
<script type="text/javascript" src="http://zor.livefyre.com/wjs/v3.0/javascripts/livefyre.js"></script><script type="text/javascript">
function janrainSignOut(){
janrain.capture.ui.endCaptureSession();
}
(function() {
if (typeof window.janrain !== 'object') window.janrain = {};
window.janrain.settings = {};
window.janrain.settings.capture = {};
// capture settings
janrain.settings.capture.redirectUri = 'https://thenypost.wordpress.com/wp-admin/admin-ajax.php?action=janrain_capture_redirect_uri';
janrain.settings.capture.appId= 'rmzxajhacm697fdpmb8usywzxg';
janrain.settings.capture.clientId = 'r3b8u9uyttgwxym6h3g8kj9xqbtchasu';
janrain.settings.capture.responseType = 'token';
janrain.settings.capture.captureServer = 'https://nypost.janraincapture.com';
janrain.settings.capture.registerFlow = 'socialRegistration';
janrain.settings.packages = ['capture','login'];
janrain.settings.capture.setProfileCookie = true;
janrain.settings.capture.keepProfileCookieAfterLogout = true;
janrain.settings.capture.setProfileData = 'true';
janrain.settings.capture.federateEnableSafari = true;
// styles
janrain.settings.capture.stylesheets = ['http://s0.wp.com/wp-content/themes/vip/nypost/janrain-capture-screens/stylesheets/styles.css?m=1377912530g'];
janrain.settings.capture.mobileStylesheets = ['http://s0.wp.com/wp-content/themes/vip/nypost/janrain-capture-screens/stylesheets/mobile-styles.css?m=1401401103g'];
janrain.settings.capture.recaptchaPublicKey = '6LeVKb4SAAAAAGv-hg5i6gtiOV4XrLuCDsJOnYoP';
// engage settings
janrain.settings.appUrl = 'https://nypost.rpxnow.com';
janrain.settings.tokenAction = 'event';
//backplane settings
janrain.settings.capture.backplane = 1;
janrain.settings.capture.backplaneBusName = 'nypost.com';
janrain.settings.capture.backplaneVersion = 1.2;
function isReady() { janrain.ready = true; };
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", isReady, false);
} else {
window.attachEvent('onload', isReady);
}
var e = document.createElement('script');
e.type = 'text/javascript';
e.id = 'janrainAuthWidget'
var url = document.location.protocol === 'https:' ? 'https://' : 'http://';
url += 'd29usylhdk1xyu.cloudfront.net/load/nypost';
e.src = url;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(e, s);
})();
</script><script type="text/javascript">function janrainCaptureWidgetOnLoad() {
janrain.events.onCaptureLoginSuccess.addHandler(function(result){
livefyreUserVerified(result);
janrain.capture.ui.modal.close();
janrainLoggedIn();
});
janrain.events.onCaptureRegistrationSuccess.addHandler(function(result){
livefyreUserVerified(result);
janrain.capture.ui.modal.close();
janrainLoggedIn();
});
janrain.events.onCaptureSessionFound.addHandler(function(){
// The user is logged in, so display their welcome name and change the Sign In menu item to My Account
janrainLoggedIn();
});
janrain.events.onCaptureSessionEnded.addHandler(function(result){
jQuery( '#sign-out' ).off().addClass( 'reloading' );
// after logging out of Janrain
// clear email cookie
jQuery.removeCookie('janrainEmailVerified');
// and log out of Livefyre if logged in
if ( typeof fyre !== 'undefined' && typeof fyre.conv.user.id !== 'undefined' ) {
fyre.conv.logout();
}
// there should be a listener in livefyre that refreshes after logout
// but reload window in case that misfires
setTimeout( function(){
window.location.reload( false );
}, 2000);
});
janrain.capture.ui.start();
}
// Manually update the Sign In functionality to Sign Out due to the modal workaround
function janrainLoggedIn() {
// Hide the Sign In link
$janrain_element = jQuery( '#promoted-tags #janrain_auth, #page-nav #janrain_auth' );
$janrain_element.hide();
// Manually create a new element for Sign Out since the Sign In element
// has an unremovable Sign In modal event attached to it until the page refreshes.
jQuery( '<a></a>' )
.text( 'Sign Out' )
.attr( "onclick", "janrain.capture.ui.endCaptureSession()" )
.attr( 'id', 'sign-out' )
.insertAfter( $janrain_element );
// Remove click event from comments sign in, change text
jQuery( '.comments-sign-x' )
.off()
.on( 'click', janrain.capture.ui.endCaptureSession )
.text( 'Sign Out' );
// close flyover on mobile if open
if ( jQuery( '#nav-flyovers' ).hasClass( 'ui-panel-open' ) ){
nypostCloseFlyover();
}
// toggles display of signin-out links in mobile nav
jQuery( '#account-flyover' ).addClass( 'logged-in' );
}
// toggle the classes that close the flyover menu
function nypostCloseFlyover(){
$('#content-wrapper').removeClass('ui-panel-content-wrap-position-right ui-panel-content-wrap-display-reveal ui-panel-content-wrap-open').addClass('ui-panel-content-wrap-closed');
$('#nav-flyovers').removeClass('ui-panel-open').addClass('ui-panel-closed');
$('#content-wrapper').css('position', 'relative');
$('#div-gpt-ad-pull.mobile-ad-pull').show();
}
// Function to check if a user's email is verified
function nypostJanrainVerified(user) {
// If a null user object was passed in, attempt to get the data from the cookie
if ( null == user ) {
var emailVerified = jQuery.cookie('janrainEmailVerified');
if ( typeof( emailVerified ) != "undefined" ) {
return emailVerified;
}
}
// Check the access token and uuid are set as well as the URL required to make the API call
if ( null != user
&& "undefined" != typeof( user.accessToken )
&& null != user.accessToken
&& "undefined" != typeof( user.userData.uuid )
&& null != user.userData.uuid ) {
// Query for the user emailVerified status. Anything other than a successful response should be considered false.
emailVerified = false;
jQuery.ajax({
type: 'POST',
url: janrain_ajaxurl,
async: false,
timeout: 3000,
data: { action: 'janrain_entity_api_call', nonce: janrain_entity_api_call_nonce, access_token: user.accessToken, uuid: user.userData.uuid, type_name: 'user', attribute_name: 'emailVerified' }
})
.done( function( response ) {
var response_data = JSON.parse( response );
if ( typeof( response_data.result ) != "undefined" && response_data.result != null )
emailVerified = true;
} );
// Set a session cookie to store the value
jQuery.cookie('janrainEmailVerified', emailVerified);
}
// If no user object was passed in and no cookie was set previously, emailVerified could be undefined at this point.
// That is acceptable to denote that as a special case.
return emailVerified;
}</script>
<!-- BEGIN Sailthru Horizon Meta Information -->
<meta name="sailthru.date" content="2014-12-29 10:32:29" />
<meta name="sailthru.title" content="Surfer survives ‘Jaws’ moment with great white shark" />
<meta name="sailthru.tags" content="animals,california,great-white-sharks,wow," />
<meta name="sailthru.description" content="A surfer survived being attacked and dragged underwater by a juvenile great white shark off the central California coast Sunday." />
<meta name="sailthru.image.full" content="http://thenypost.files.wordpress.com/2014/12/shark.jpg" />
<meta name="sailthru.image.thumb" content="http://thenypost.files.wordpress.com/2014/12/shark.jpg?w=231&h=154&crop=1" />
<!-- END Sailthru Horizon Meta Information -->
<meta name='nypost-section' content='News' />
<script
type="text/javascript"
data-lf-domain="nypost.fyre.co"
src="http://zor.livefyre.com/wjs/v1.0/javascripts/CommentCount.js">
</script>
<script type='text/javascript'>
var dfp_ad_slots_desktop = [];
var dfp_ad_slots_mobile = [];
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script type="text/javascript">
googletag.cmd.push(function() {
if ( nypost_dfp_screen == 'desktop') {
dfp_ad_slots_desktop[0] = googletag.defineSlot('/5850/post.desktop/billb_atf/news/stories', [[970,251],[970,90],[970,200],[970,250],[978,250],[970,415],[1,1]],'div-gpt-ad-billb_atf').addService(googletag.pubads());
dfp_ad_slots_desktop[1] = googletag.defineSlot('/5850/post.desktop/billb_btf/news/stories', [[970,252],[970,90],[970,200],[970,250],[978,250],[970,415],[1,1]],'div-gpt-ad-billb_btf').addService(googletag.pubads());
dfp_ad_slots_desktop[2] = googletag.defineSlot('/5850/post.desktop/rec_atf/news/stories', [[300,251],[300,250],[300,600],[1,1],[300,1050]],'div-gpt-ad-rec_atf').addService(googletag.pubads());
dfp_ad_slots_desktop[3] = googletag.defineSlot('/5850/post.desktop/rec_btf/news/stories', [[300,252],[300,250],[1,1]],'div-gpt-ad-rec_btf').addService(googletag.pubads());
dfp_ad_slots_desktop[4] = googletag.defineSlot('/5850/post.desktop/rec_widget/news/stories', [[300,255],[300,250],[1,1]],'div-gpt-ad-rec_widget').addService(googletag.pubads());
dfp_ad_slots_desktop[5] = googletag.defineSlot('/5850/post.desktop/footer/news/stories', [[300,254],[300,250],[1,1]],'div-gpt-ad-footer').addService(googletag.pubads());
dfp_ad_slots_desktop[6] = googletag.defineSlot('/5850/post.desktop/skin/news/stories', [[1,2]],'div-gpt-ad-skin').addService(googletag.pubads());
dfp_ad_slots_desktop[7] = googletag.defineSlot('/5850/post.desktop/inline/news/stories', [[1,7]],'div-gpt-ad-inline').addService(googletag.pubads());
dfp_ad_slots_desktop[8] = googletag.defineSlot('/5850/post.desktop/overlay_topstory/news/stories', [[1,3]],'div-gpt-ad-overlay_topstory').addService(googletag.pubads());
dfp_ad_slots_desktop[9] = googletag.defineSlot('/5850/post.desktop/overlay_fullpage/news/stories', [[1,4]],'div-gpt-ad-overlay_fullpage').addService(googletag.pubads());
have_ad_slots = true;
}else if ( nypost_dfp_screen == 'mobile') {
dfp_ad_slots_mobile[0] = googletag.defineSlot('/5850/post.mobile/rec_atf/news/stories', [[1,1],[300,250],[300,1050]],'div-gpt-ad-rec_atf').addService(googletag.pubads());
dfp_ad_slots_mobile[1] = googletag.defineSlot('/5850/post.mobile/top/news/stories', [[1,1],[320,162]],'div-gpt-ad-top').addService(googletag.pubads());
dfp_ad_slots_mobile[2] = googletag.defineSlot('/5850/post.mobile/sidecar/news/stories', [[1,1],[28,250]],'div-gpt-ad-sidecar').addService(googletag.pubads());
dfp_ad_slots_mobile[3] = googletag.defineSlot('/5850/post.mobile/bottom/news/stories', [[1,1],[320,50]],'div-gpt-ad-bottom').addService(googletag.pubads());
dfp_ad_slots_mobile[4] = googletag.defineSlot('/5850/post.mobile/overlay_fullpage/news/stories', [[1,4]],'div-gpt-ad-overlay_fullpage').addService(googletag.pubads());
have_ad_slots = true;
} if ( have_ad_slots ) {
googletag.pubads().setTargeting('authors',["Fox News"]).setTargeting('page_type',"article").setTargeting('content',["animals","california","great-white-sharks","wow"]).setTargeting('site',"nypost");
var testadv = window.location.href.toString().match(/testadv=([\w\d]+)/);
if (testadv !== null) {
testadv = testadv[1].toString().replace(/testadv=/, "");
googletag.pubads().setTargeting('testadv',[testadv]);
}
if ( typeof Krux != 'undefined' ) {
googletag.pubads().setTargeting('ksg', Krux.segments);
googletag.pubads().setTargeting('kuid', Krux.user);
}
if ( typeof pxSegmentIDs != 'undefined' && pxSegmentIDs != '' ) {
googletag.pubads().setTargeting('psg', pxSegmentIDs);
}
googletag.pubads().enableSingleRequest();
googletag.pubads().enableAsyncRendering();
googletag.pubads().collapseEmptyDivs();
googletag.enableServices();
}
});
</script>
<script src="//cdn.optimizely.com/js/291827881.js"></script>
<meta name='parsely-page' content='{"title":"Surfer survives \u0027Jaws\u0027 moment with great white shark","link":"http:\/\/nypost.com\/2014\/12\/29\/surfer-survives-jaws-moment-with-great-white-shark\/","image_url":"http:\/\/thenypost.files.wordpress.com\/2014\/12\/shark.jpg","type":"post","post_id":"nypost-8430180","pub_date":"2014-12-29T15:32:29Z","section":"news","author":["Fox News"],"tags":["Animals","California","great white sharks","Wow","\/article"]}' />
<meta name='parsely-metadata' content='{"post_id":8430180}' />
<meta name="google-site-verification" content="0ChYYJ_QsKnyimSC27PNRqpEJ8sstO08-2yQ81t5yfU" />
<meta name="google-site-verification" content="Y35rxQGMDF8RBK0PXe_b3H0oZ6qw1a5l3oI4l_YXIcE" />
<meta name="msvalidate.01" content="8188997BC82071CE07AB711B5675CE54" />
<script type="text/javascript">var ajaxurl = "http://nypost.com/wp-admin/admin-ajax.php"</script><meta name="application-name" content="New York Post" /><meta name="msapplication-window" content="width=device-width;height=device-height" /><meta name="msapplication-tooltip" content="Your source for breaking news, news about New York, sports, business, entertainment, opinion, real estate, culture, fashion, and more." /><meta name="msapplication-task" content="name=Subscribe;action-uri=http://nypost.com/feed/;icon-uri=http://1.gravatar.com/blavatar/5a214da64b1b66f28cbfcd6b1b352675?s=16" /><style type="text/css" id="syntaxhighlighteranchor"></style>
<script>
if ( typeof fyre != 'undefined' ) {
var authDelegate = new fyre.conv.BackplaneAuthDelegate(window.Backplane);
authDelegate.login = function(delegate) {
var successCallback = function(result) {
// Ensure the user has a verified email and only proceed if true
var emailVerified = livefyreUserVerified(result);
if ( emailVerified ) {
delegate.success();
janrain.events.onCaptureLoginSuccess.removeHandler(successCallback);
janrain.events.onModalClose.removeHandler(failureCallback);
}
};
var failureCallback = function() {
delegate.failure();
janrain.events.onModalClose.removeHandler(failureCallback);
janrain.events.onCaptureLoginSuccess.removeHandler(successCallback);
};
janrain.capture.ui.modal.open();
window.Backplane.expectMessages('identity/login');
janrain.events.onCaptureLoginSuccess.addHandler(successCallback);
janrain.events.onModalClose.addHandler(failureCallback);
};
authDelegate.logout = function(delegate) {
jQuery.removeCookie('janrainEmailVerified');
Backplane.resetCookieChannel();
fyre.conv.BackplaneAuthDelegate.prototype.logout.call(this, delegate);
};
authDelegate.viewProfile = function(delegate, author) {};
var livefyreOnLoad = function(widget) {
widget.on('commentPosted', function (data) {
ga('send', 'event', 'Response', 'Post Response', 'Comment');
ga('set', 'dimension13', 'yes');
});
widget.on('initialRenderComplete', function (data) {
// If a user is logged in, ensure they have a verified email.
// Do not allow them to post comments if not.
var emailVerified = livefyreUserVerified(null);
if ( 'false' == emailVerified || false == emailVerified ) {
this.stop();
jQuery('.fyre-comment-footer').remove();
}
});
// reload window after user logs out
// this avoids error where Janrain is logged in while Livefyre is logged out
widget.on( 'userLoggedOut', function(){
jQuery( '#account-flyover' ).removeClass( 'logged-in' ); // toggles signin-out links
window.location.reload( false );
});
}
var livefyreUserVerified = function(user) {
// Get the email verified status
var emailVerified = nypostJanrainVerified(user);
// If the email is not verified, remove the comment box and display a message instead
if ( 'false' == emailVerified || false == emailVerified ) {
jQuery('.fyre-editor').first().html('<p class="fyre-not-verified">Your email address must be verified before you can comment. To complete the registration process, please click on the link that appears in the the email that was sent to the address you entered. It may take a few minutes for the email to arrive. If you don\'t receive it, please check your spam folder.</p>');
jQuery('.fyre-comment-footer').remove();
}
// Also return the value in case the function calling this needs it for other operations.
return emailVerified;
}
}
var janrain_entity_api_call_nonce = '298a8e2e50';
var janrain_ajaxurl = 'https://thenypost.wordpress.com/wp-admin/admin-ajax.php';
var janrain_resend_url = '{* resendLink *}';
</script>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.2/html5shiv.js"></script>
<script src="//s3.amazonaws.com/nwapi/nwmatcher/nwmatcher-1.2.5-min.js"></script>
<script src="//html5base.googlecode.com/svn-history/r38/trunk/js/selectivizr-1.0.3b.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/respond.js/1.1.0/respond.min.js"></script>
<link rel='stylesheet' id='screen-css' href='http://s0.wp.com/wp-content/themes/vip/nypost/static/stylesheets/screen.css?m=1419368610g' type='text/css'/>
<![endif]-->
</head>
<body class="single single-article postid-8430180 nypost mp6 typekit-enabled highlander-enabled highlander-light">
<div id="fb-root"></div>
<script>
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&appId=823934954307605&version=v2.0";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div id='div-gpt-ad-sidecar' class='dfp-ad dfp-ad-post dfp-sidecar'>
<div class='ad-wrapper'>
<script type='text/javascript'>
if ( typeof googletag != 'undefined' ) {
googletag.cmd.push(function() { googletag.display('div-gpt-ad-sidecar'); });
}
</script>
</div>
</div>
<script type="text/javascript">(function(a,b,c,d){a='//tags.tiqcdn.com/utag/nypost/nypost/prod/utag.js';b=document;c='script';d=b.createElement(c);d.src=a;d. type='text/java'+c;d.async=true;a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a)})();</script>
<ul id="nav-flyovers" class="ui-panel ui-panel-position-right ui-panel-display-reveal ui-body-a ui-panel-animate ui-panel-closed">
<li id="search-flyover" class="flyover">
<div class="nav-carat"></div>
<div class="flyover-inner clearfix">
<form id="nav-search" action="http://nypost.com/">
<input type="text" name="s" id="search-field" placeholder="Search..." />
<input type="submit" value="search" id="search-submit" />
</form> </div>
</li>
<li id="sections-flyover" class="flyover">
<div class="nav-carat"></div>
<div class="flyover-inner">
<div class="menu-main-menu-container"><ul id="menu-main-menu" class="menu"><li id="menu-item-1612774" class="menu-item menu-item-type-taxonomy menu-item-object-section current-article-ancestor current-menu-parent current-article-parent menu-item-1612774"><a href="/news/">News</a></li>
<li id="menu-item-1612773" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-1612773"><a href="/metro/">Metro</a></li>
<li id="menu-item-1612779" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1612779"><a href="http://pagesix.com">Page Six</a></li>
<li id="menu-item-1612777" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-1612777"><a href="/sports/">Sports</a></li>
<li id="menu-item-1612768" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-1612768"><a href="/business/">Business</a></li>
<li id="menu-item-1612775" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-1612775"><a href="/opinion/">Opinion</a></li>
<li id="menu-item-1612769" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-1612769"><a href="/entertainment/">Entertainment</a></li>
<li id="menu-item-1617339" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-1617339"><a href="/fashion/">Fashion</a></li>
<li id="menu-item-1612771" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-1612771"><a href="/living/">Living</a></li>
<li id="menu-item-1612772" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-1612772"><a href="/media/">Media</a></li>
<li id="menu-item-1612778" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-1612778"><a href="/tech/">Tech</a></li>
<li id="menu-item-1615324" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-has-children menu-item-1615324"><a href="/real-estate/">Real Estate</a>
<ul class="sub-menu">
<li id="menu-item-7962507" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-7962507"><a href="http://nypost.com/cover">Covers</a></li>
<li id="menu-item-7962521" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-7962521"><a href="http://nypost.com/horoscope/">Horoscopes</a></li>
<li id="menu-item-7962530" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-7962530"><a href="http://nypost.com/columnists/">Columnists</a></li>
<li id="menu-item-8028368" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8028368"><a href="http://bit.ly/1BJmUB5">Realtor.com</a></li>
</ul>
</li>
</ul></div> <div class="spacer mobile"></div>
</div>
</li>
<li id="follow-flyover" class="flyover">
<div class="nav-carat"></div>
<div class="flyover-inner">
<ul id="nav-follow">
<li><a href="https://twitter.com/nypost" target="_blank"><i id="twitter-icon"></i>Twitter</a></li>
<li><a href="https://www.facebook.com/nypost" target="_blank"><i id="facebook-icon"></i>Facebook</a></li>
</ul>
</div>
</li>
<li id="account-flyover" class="flyover mobile">
<a id="janrain_auth" href="#" class="capture_modal_open" >Sign in / Register</a>
<script>
if(localStorage && localStorage.getItem("janrainCaptureToken")) {
var authLink = document.getElementById("janrain_auth");
authLink.innerHTML = "Log out";
authLink.setAttribute("href", "https://thenypost.wordpress.com/wp-admin/admin-ajax.php?action=janrain_capture_logout&source=http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/");
authLink.setAttribute("onclick", "janrain.capture.ui.endCaptureSession()");
authLink.setAttribute("class","");
}
</script> <a id="sign-out-flyover" href="#" class="" onclick="janrain.capture.ui.endCaptureSession()">Sign Out</a>
</li>
<li id="pagesix-submit-a-tip" class="flyover">
<div class="nav-carat"></div>
<div class="flyover-inner">
<label for="pagesix-tip-text"><strong>See something newsworthy?</strong><br>Tell us about it!</label>
<p>or email <a href="mailto:tips@nypost.com">tips@nypost.com</a></p>
<label for="tip-submit">(all tips will be submitted anonymously)</label>
</div>
</li>
</ul>
<div id="email-response" style="display:none;">
<div class="thankyou">
<span class="email-icon"></span>
<div class="rule"></div>
<h3>Thanks for contacting us. We've received your submission.</h3>
<a href="#" class="back">Back to Reading</a>
</div>
</div> <div id="content-wrapper" class="ui-panel-animate ui-panel-content-wrap-closed ui-panel-content-wrap ui-panel-content-wrap-closed">
<header id="page-header" class="clearfix">
<div id="top-bar-wrapper" class="desktop">
<div id="top-bar">
<div id="promoted-tags-wrapper">
<div id="promoted-tags" class="container">
<h3>In The News:</h3>
<a href="http://nypost.com/tag/mario-cuomo/">Mario Cuomo</a>
<a href="http://nypost.com/tag/rex-ryan/">Rex Ryan</a>
<a href="http://nypost.com/tag/flight-qz8501/">Flight QZ8501</a>
<a href="/sony-hack/">Sony hack</a>
<a href="http://nypost.com/tag/2014-in-review/">2014 in review</a>
<a href="http://nypost.com/tag/amy-pascal/">Amy Pascal</a>
</div>
</div>
</div>
</div>
<div id="nav-wrapper">
<div class="container">
<nav id="page-nav">
<div class="nav-links">
<a class="nav-item" id="home" href="http://nypost.com">
<i></i>
<span class="nav-text">Home</span>
</a>
<a class="nav-item" id="sections" href="#nav-flyovers">
<i></i>
<span class="nav-text">Sections</span>
</a>
<a class="nav-item desktop" id="search">
<i></i>
<span>Search</span>
</a> <a class="nav-item" id="pagesix-tip" class="pagesix" href="#">
<i></i>
<span>Tips</span>
</a>
<a id="janrain_auth" href="#" class="capture_modal_open" >Sign in / Register</a>
<script>
if(localStorage && localStorage.getItem("janrainCaptureToken")) {
var authLink = document.getElementById("janrain_auth");
authLink.innerHTML = "Log out";
authLink.setAttribute("href", "https://thenypost.wordpress.com/wp-admin/admin-ajax.php?action=janrain_capture_logout&source=http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/");
authLink.setAttribute("onclick", "janrain.capture.ui.endCaptureSession()");
authLink.setAttribute("class","");
}
</script> <a class="nav-item" id="subscribe" href="https://pay.nypost.com/" target="_blank" class="desktop">
<i></i>
<span>Subscribe</span>
</a>
<a class="nav-item" id="follow" class="desktop">
<i></i>
<span>Follow</span>
</a>
</div>
<a href="http://nypost.com" id="header-logo">New York Post</a>
</nav>
</div>
</div>
<div id="header-billboard-ad" class="billboard-ad">
<div id='div-gpt-ad-billb_atf' class='dfp-ad dfp-ad-post dfp-billb_atf'>
<div class='ad-wrapper'>
<script type='text/javascript'>
if ( typeof googletag != 'undefined' ) {
googletag.cmd.push(function() { googletag.display('div-gpt-ad-billb_atf'); });
}
</script>
</div>
</div>
</div>
<div id='div-gpt-ad-top' class='dfp-ad dfp-ad-post dfp-top'>
<div class='ad-wrapper'>
<script type='text/javascript'>
if ( typeof googletag != 'undefined' ) {
googletag.cmd.push(function() { googletag.display('div-gpt-ad-top'); });
}
</script>
</div>
</div>
</header>
<div id='div-gpt-ad-skin' class='dfp-ad dfp-ad-post dfp-skin'>
<div class='ad-wrapper'>
<script type='text/javascript'>
if ( typeof googletag != 'undefined' ) {
googletag.cmd.push(function() { googletag.display('div-gpt-ad-skin'); });
}
</script>
</div>
</div>
<div id='div-gpt-ad-overlay_fullpage' class='dfp-ad dfp-ad-post dfp-overlay_fullpage'>
<div class='ad-wrapper'>
<script type='text/javascript'>
if ( typeof googletag != 'undefined' ) {
googletag.cmd.push(function() { googletag.display('div-gpt-ad-overlay_fullpage'); });
}
</script>
</div>
</div>
<div id="content">
<div id='div-gpt-ad-bottom' class='dfp-ad dfp-ad-post dfp-bottom'>
<div class='ad-wrapper'>
<script type='text/javascript'>
if ( typeof googletag != 'undefined' ) {
googletag.cmd.push(function() { googletag.display('div-gpt-ad-bottom'); });
}
</script>
</div>
</div>
<div id="background-wrapper">
<div class="container clearfix">
<div id='div-gpt-ad-overlay_topstory' class='dfp-ad dfp-ad-post dfp-overlay_topstory'>
<div class='ad-wrapper'>
<script type='text/javascript'>
if ( typeof googletag != 'undefined' ) {
googletag.cmd.push(function() { googletag.display('div-gpt-ad-overlay_topstory'); });
}
</script>
</div>
</div>
<div id="article-wrapper" class="left-column clearfix standard">
<div class="box article modal-enabled">
<div class="article-header">
<div class="flag-region">
<p class="section-tag">
<a href="/news/" class="background-color">News</a>
</p>
<div class="article-share-top nyp-sharedaddy-wrapper">
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li><a href="#" class="sharing-anchor sd-button share-more"><span>Share</span></a></li><li class="share-end"></li></ul><div class="sharing-hidden"><div class="inner" style="display: none;"><ul><li class="share-facebook"><a rel="nofollow" class="share-facebook sd-button share-icon" href="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/?share=facebook" title="Share on Facebook" id="sharing-facebook-8430180"><span>Facebook</span></a></li><li class="share-twitter"><a rel="nofollow" class="share-twitter sd-button share-icon" href="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/?share=twitter" title="Click to share on Twitter" id="sharing-twitter-8430180"><span>Twitter</span></a></li><li class="share-end"></li><li class="share-google-plus-1"><a rel="nofollow" class="share-google-plus-1 sd-button share-icon" href="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/?share=google-plus-1" title="Click to share on Google+" id="sharing-google-8430180"><span>Google</span></a></li><li class="share-custom"><a rel="nofollow" class="share-whatsapp sd-button share-icon" href="whatsapp://send?text=Surfer%20survives%20%27Jaws%27%20moment%20with%20great%20white%20shark%20http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/" id="sharing-whats-8430180" title="Click to share on Whatsapp"><span>WhatsApp</span></a></li><li class="share-end"></li><li class="share-email"><a rel="nofollow" class="share-email sd-button share-icon" href="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/?share=email" title="Click to email this to a friend"><span>Email</span></a></li><li class="share-end"></li></ul></div></div></div></div></div> </div>
</div>
<h1><a href="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/">Surfer survives ‘Jaws’ moment with great white shark</a></h1>
<div id="author-byline">
<p class="byline">By Fox News</p> <div class="author-flyout fox-news" data-author-name="Fox News">
<div class="arrow"></div>
<div class="author-flyout-inner">
<ul class="author-flyout-icons">
<li><a href="http://nypost.com/author/fox-news/" data-interaction-type="archive" title="Fox News's archive"><span class="author-flyout-archive"></span>View author archive</a></li>
<li><a href="http://nypost.com/author/fox-news/feed/" data-interaction-type="rss" title="Get Fox News's RSS feed" target="_blank"><span class="author-flyout-rss"></span>Get author RSS feed</a></li>
</ul>
</div>
</div>
<div id="columnist-contact" class="author-contact"><div class="box module widget_text"> <div class="textwidget"><div id='contact-form-widget-text-2'>
<form action='/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/#contact-form-widget-text-2' method='post' class='contact-form commentsblock'>
<div>
<label for='gwidget-text-2-name' class='grunion-field-label name'>Name<span>(required)</span></label>
<input type='text' name='gwidget-text-2-name' id='gwidget-text-2-name' value='' class='name' required aria-required='true'/>
</div>
<div>
<label for='gwidget-text-2-email' class='grunion-field-label email'>Email<span>(required)</span></label>
<input type='email' name='gwidget-text-2-email' id='gwidget-text-2-email' value='' class='email' required aria-required='true'/>
</div>
<div>
<label for='contact-form-comment-gwidget-text-2-comment' class='grunion-field-label textarea'>Comment<span>(required)</span></label>
<textarea name='gwidget-text-2-comment' id='contact-form-comment-gwidget-text-2-comment' rows='20' required aria-required='true'></textarea>
</div>
<p class='contact-submit'>
<input type='submit' value='Submit »' class='pushbutton-wide'/>
<input type='hidden' name='contact-form-id' value='widget-text-2' />
<input type='hidden' name='action' value='grunion-contact-form' />
</p>
</form>
</div>
</div>
</div></div> </div>
<p class="byline-date">December 29, 2014 | 10:32am</p>
<div class="double-rule"></div>
<div id="featured-image-wrapper">
<a class="modal-trigger" data-modal-type="image" href="http://thenypost.files.wordpress.com/2014/12/shark.jpg" title="Expand Image">Modal Trigger</a>
<div class="featured-image" data-picture data-alt="Surfer survives ‘Jaws’ moment with great white shark">
<div data-src="http://thenypost.files.wordpress.com/2014/12/shark.jpg?w=600"></div>
<div data-src="http://thenypost.files.wordpress.com/2014/12/shark.jpg?w=720&h=480&crop=1" data-media="(min-width: 640px)"></div>
</div>
<div class="wp-caption-text featured">
50-year-old surfer Kevin Swanson survived being attacked and dragged underwater by a 8-to-10 foot great white shark off the coast of California on Sunday. <span class="credit">Photo: Barcroft</span>
</div>
</div>
<div class="in-line-column wp-caption alignleft">
<div id="syndicated-partner" class="box module inline desktop">
<div class="module-wrapper">
<div class="partner-header">
<h3>Originally published by:</h3>
</div>
<div class="partner-image">
<a href="http://foxnews.com" target="_blank"><img width="37" height="30" src="http://thenypost.files.wordpress.com/2013/08/logo-fox-news-01.png?w=37" class="attachment-nypost-syndicated-partner" alt="logo-fox-news" /></a>
</div>
</div>
</div> <div id="more-on" class="box module inline tag desktop">
<div class="module-wrapper">
<div class="tag-header">
<h3>MORE ON:</h3>
<h6><a href="http://nypost.com/tag/great-white-sharks/">great white sharks</a></h6>
</div>
<h5><a href="http://nypost.com/2014/12/10/great-white-sharks-take-hunting-to-the-skies/">The real 'Sharknado' is here</a></h5>
</div>
</div>
</div> <div class="entry-content">
<p>A surfer survived being attacked and dragged underwater by a juvenile great white shark off the central California coast Sunday.</p>
<p>California State Park Ranger Supervisor Robert Colligan said the attack by the 8-to-10 foot shark happened at around 11 a.m. local time at Montana de Oro State Park, approximately 200 miles northwest of Los Angeles.</p>
<p><a href="http://www.sanluisobispo.com/2014/12/28/3417291/shark-bites-surfer-slo-county.html?sp=/99/100/&ihp=1">The San Luis Obispo Tribune</a>, citing witnesses, identified the surfer as 50-year-old Kevin Swanson of Morro Bay, Calif. He was airlifted to a local hospital with non-life-threatening injuries to his right hip and thigh and a hospital spokesman said Swanson was in fair condition Sunday afternoon.</p>
<p>Andrew Walsh, who was surfing with Swanson, told the paper that the shark swam up from underneath Swanson’s board and grabbed him with no warning. Walsh added that Swanson surfaced after several seconds, yelled “shark attack!”, and began paddling to shore.</p>
<p>Before Swanson got out of the water, Walsh said, he fashioned a tourniquet from his surfboard’s leash cord. Two doctors who happened to be walking on the beach at the time examined him and determined that no arteries were hit.</p>
<p><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='390' src='http://www.youtube.com/embed/myeJ_Eia0AM?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent' frameborder='0' allowfullscreen='true'></iframe></span></p>
<p>“We’re really blessed that he was still able to get himself to shore,” Walsh said. “I was a few feet behind him, and we grabbed him and got him … up on the sand, and very quickly these doctors were there, helping out and calling 911.”</p>
<p>The beach remained open, but signs will be posted for three days warning the public of the attack, Colligan said. He noted that if there is another shark sighting, the signs will remain up for another three days.</p>
<p>Sharks are native to the area, and Colligan said that they are spotted several times a year. He added that attacks like this are rare.</p>
<p>A woman swimming with seals was killed by a shark in 2003 about 10 miles south of the most recent attack, Colligan said.</p>
<div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li><a href="#" class="sharing-anchor sd-button share-more"><span>Share</span></a></li><li class="share-end"></li></ul><div class="sharing-hidden"><div class="inner" style="display: none;"><ul><li class="share-facebook"><a rel="nofollow" class="share-facebook sd-button share-icon" href="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/?share=facebook" title="Share on Facebook" id="sharing-facebook-8430180"><span>Facebook</span></a></li><li class="share-twitter"><a rel="nofollow" class="share-twitter sd-button share-icon" href="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/?share=twitter" title="Click to share on Twitter" id="sharing-twitter-8430180"><span>Twitter</span></a></li><li class="share-end"></li><li class="share-google-plus-1"><a rel="nofollow" class="share-google-plus-1 sd-button share-icon" href="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/?share=google-plus-1" title="Click to share on Google+" id="sharing-google-8430180"><span>Google</span></a></li><li class="share-custom"><a rel="nofollow" class="share-whatsapp sd-button share-icon" href="whatsapp://send?text=Surfer%20survives%20%27Jaws%27%20moment%20with%20great%20white%20shark%20http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/" id="sharing-whats-8430180" title="Click to share on Whatsapp"><span>WhatsApp</span></a></li><li class="share-end"></li><li class="share-email"><a rel="nofollow" class="share-email sd-button share-icon" href="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/?share=email" title="Click to email this to a friend"><span>Email</span></a></li><li class="share-end"></li></ul></div></div></div></div></div></div> <p id="syndicated-partner">This article <a href="http://www.foxnews.com/us/2014/12/29/surfer-survives-being-attacked-dragged-under-by-shark-off-central-california/" target="_blank">originally appeared</a> on <a href="http://foxnews.com" target="_blank">Fox News</a>.</p> </div>
</div>
<div class="tag-list">
<span>Filed under</span>
<a href="http://nypost.com/tag/animals/" rel="tag">Animals</a>
<span class="sep">, </span>
<a href="http://nypost.com/tag/california/" rel="tag">California</a>
<span class="sep">, </span>
<a href="http://nypost.com/tag/great-white-sharks/" rel="tag">great white sharks</a>
<span class="sep">, </span>
<a href="http://nypost.com/tag/wow/" rel="tag">Wow</a>
</div>
<div id="syndicated-partner-mobile"></div>
<div id="sharebar-trigger"></div>
<div class="sharebar nyp-sharedaddy-wrapper">
<div id="sharebar-social">
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li><a href="#" class="sharing-anchor sd-button share-more"><span>Share</span></a></li><li class="share-end"></li></ul><div class="sharing-hidden"><div class="inner" style="display: none;"><ul><li class="share-facebook"><a rel="nofollow" class="share-facebook sd-button share-icon" href="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/?share=facebook" title="Share on Facebook" id="sharing-facebook-8430180"><span>Facebook</span></a></li><li class="share-twitter"><a rel="nofollow" class="share-twitter sd-button share-icon" href="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/?share=twitter" title="Click to share on Twitter" id="sharing-twitter-8430180"><span>Twitter</span></a></li><li class="share-end"></li><li class="share-google-plus-1"><a rel="nofollow" class="share-google-plus-1 sd-button share-icon" href="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/?share=google-plus-1" title="Click to share on Google+" id="sharing-google-8430180"><span>Google</span></a></li><li class="share-custom"><a rel="nofollow" class="share-whatsapp sd-button share-icon" href="whatsapp://send?text=Surfer%20survives%20%27Jaws%27%20moment%20with%20great%20white%20shark%20http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/" id="sharing-whats-8430180" title="Click to share on Whatsapp"><span>WhatsApp</span></a></li><li class="share-end"></li><li class="share-email"><a rel="nofollow" class="share-email sd-button share-icon" href="http://nypost.com/2014/12/29/surfer-survives-jaws-moment-with-great-white-shark/?share=email" title="Click to email this to a friend"><span>Email</span></a></li><li class="share-end"></li></ul></div></div></div></div></div> <div class="share-post-url desktop">
<span></span><input type="text" value="http://nyp.st/13OFYyy" />
</div>
</div>
<div class="read-next-wrapper" class="clearfix">
<p class="read-next">
<a href="http://nypost.com/2014/12/29/final-passengers-rescued-from-stranded-burned-ferry/">Read Next:</a>
</p>
<p class="read-next-link">
<a class="mobile" href="http://nypost.com/2014/12/29/final-passengers-rescued-from-stranded-burned-ferry/">
Final passengers rescued… </a>
<a class="desktop" href="http://nypost.com/2014/12/29/final-passengers-rescued-from-stranded-burned-ferry/">
Final passengers rescued from stranded,… </a>
<a class="desktop expand" href="http://nypost.com/2014/12/29/final-passengers-rescued-from-stranded-burned-ferry/">
Final passengers rescued from stranded, burned ferry </a>
</p>
</div>
</div>
<div id="outbrainContainer" data-ob-template="nypost" class="OBR"></div>
<script type="text/javascript">
// set a default widget id
var ob_id = 'AR_3';
// Select the proper template to use
if ( nypost_screen == 'mobile' ) {
ob_id='MB_2';
}
OB_elements = ( typeof( OB_elements ) !== 'undefined' ) ? OB_elements : [];
var OB_element = {};
// Editable section
OB_element.containerId = "outbrainContainer";
OB_element.widgetId = ob_id;
OB_elements.push( OB_element );
( function() {
var ob = document.createElement("script");ob.type = "text/javascript";
ob.async = true;
ob.src = "http://widgets.outbrain.com/outbrain.js";
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ob, s);
} )();
</script>
<div class="comments">
<span id="sailthru-scout-header">Recommended For You</span><div id="sailthru-scout"><div class="loading">Loading, please wait...</div></div><span id="article-popular-this-week-header">Most Popular This Week</span>
<div id="article-popular-this-week">
<div class="content-item">
<div class="image">
<span>1</span>
<a href="http://nypost.com/2014/12/29/arrests-plummet-following-execution-of-two-cops/">
<img src="http://thenypost.files.wordpress.com/2014/12/nyc_mayor_police_graduation.jpg?w=264&h=177&crop=1">
</a>
</div>
<div class="title">
<a href="http://nypost.com/2014/12/29/arrests-plummet-following-execution-of-two-cops/">Arrests plummet 66% with NYPD in virtual work stoppage</a>
</div>
</div>
<div class="content-item">
<div class="image">
<span>2</span>
<a href="http://nypost.com/2014/08/23/three-cheers-for-the-nypd/">
<img src="http://thenypost.files.wordpress.com/2014/08/rk1_3779.jpg?w=264&h=177&crop=1">
</a>
</div>
<div class="title">
<a href="http://nypost.com/2014/08/23/three-cheers-for-the-nypd/">Three cheers for the NYPD</a>
</div>
</div>
<div class="content-item">
<div class="image">
<span>3</span>
<a href="http://nypost.com/2014/12/27/cops-turn-backs-on-de-blasio-as-he-takes-stage-at-funeral/">
<img src="http://thenypost.files.wordpress.com/2014/12/usa-police_1.jpg?w=264&h=177&crop=1">
</a>
</div>
<div class="title">
<a href="http://nypost.com/2014/12/27/cops-turn-backs-on-de-blasio-as-he-takes-stage-at-funeral/">Cops turn backs on de Blasio at executed officer’s funeral</a>
</div>
</div>
<div class="content-item">
<div class="image">
<span>4</span>
<a href="http://nypost.com/2014/12/30/it-was-rough-man-rex-ryan-speaks-to-cap-his-whirlwind-day/">
<img src="http://thenypost.files.wordpress.com/2014/12/rex14.jpg?w=264&h=177&crop=1">
</a>
</div>
<div class="title">
<a href="http://nypost.com/2014/12/30/it-was-rough-man-rex-ryan-speaks-to-cap-his-whirlwind-day/">‘It was rough, man': Rex Ryan speaks to cap his whirlwind day</a>
</div>
</div>
<div class="content-item">
<div class="image">
<span>5</span>
<a href="http://nypost.com/2014/12/26/astrophysicist-angers-religious-conservatives-with-christmas-tweet/">
<img src="http://thenypost.files.wordpress.com/2014/12/tyson1.jpg?w=264&h=177&crop=1">
</a>
</div>
<div class="title">
<a href="http://nypost.com/2014/12/26/astrophysicist-angers-religious-conservatives-with-christmas-tweet/">Astrophysicist angers Christians with Christmas tweet</a>
</div>
</div>
<div class="content-item">
<div class="image">
<span>6</span>
<a href="http://nypost.com/2014/12/25/plane-passenger-tossed-after-angry-reaction-to-merry-christmas/">
<img src="http://thenypost.files.wordpress.com/2014/12/shutterstock_105424889.jpg?w=264&h=177&crop=1">
</a>
</div>
<div class="title">
<a href="http://nypost.com/2014/12/25/plane-passenger-tossed-after-angry-reaction-to-merry-christmas/">Passenger tossed after flipping out over staff’s ‘Merry Christmas’</a>
</div>
</div>
</div> </div>
</div>
</div>
<div id="highlight-share">
<p>Share Selection</p>
<div class="share-content">
<a target="_blank" class="facebook" href"" data-short-url="http://nyp.st/13OFYyy">Facebook</a>
<a target="_blank" href="" data-short-url="http://nyp.st/13OFYyy" class="twitter">Twitter</a>
</div>
<div class="arrow"></div>
</div>
<div class="right-column sidebar">
<div id='div-gpt-ad-rec_atf' class='dfp-ad dfp-ad-post dfp-rec_atf'>
<div class='ad-wrapper'>
<script type='text/javascript'>
if ( typeof googletag != 'undefined' ) {
googletag.cmd.push(function() { googletag.display('div-gpt-ad-rec_atf'); });
}
</script>
</div>
</div>
<div class="box module widget_nypost_trending_widget"><div class="module-title"><h2>Trending Now in News</h2></div> <div class="image-layout none">
<div class="trending-headlines-story clearfix">
<p class="share-count">3559</p>
<h3><a href="http://nypost.com/2015/01/03/airasia-used-unauthorized-route-on-day-of-crash-report/">AirAsia used unauthorized route on day of crash: report</a></h3>
</div>
<div class="rule"></div>
<div class="trending-headlines-story clearfix">
<p class="share-count">2806</p>
<h3><a href="http://nypost.com/2015/01/02/little-girl-survives-deadly-plane-crash-in-kentucky/">Little girl survives deadly plane crash</a></h3>
</div>
<div class="rule"></div>
<div class="trending-headlines-story clearfix">
<p class="share-count">1295</p>
<h3><a href="http://nypost.com/2015/01/02/some-airasia-victims-found-still-strapped-to-seats-official/">Some AirAsia victims found still strapped to seats</a></h3>
</div>
</div>
</div><div class="box module widget_nypost_dfp_ad_widget"><div id='div-gpt-ad-rec_widget' class='dfp-ad dfp-ad-post dfp-rec_widget'>
<div class='ad-wrapper'>
<script type='text/javascript'>
if ( typeof googletag != 'undefined' ) {
googletag.cmd.push(function() { googletag.display('div-gpt-ad-rec_widget'); });
}
</script>
</div>
</div>
</div><div class="box module widget_nypost_pagesix_rss_widget"><div class="module-title"><h2>
<div class="module-title">
<h2>Now On</h2>
<a class="pagesix-icon" href="#">Page Six</a>
</div>
</h2></div> <div class="module-wrapper">
<div class="story-photo-box">
<a href="http://pagesix.com/2015/01/02/johnny-manziel-resolves-to-stop-party-antics-after-nye/"><img src="http://nyppagesix.files.wordpress.com/2014/05/nfl_draft_football-1.jpg?w=322&h=215&crop=1" alt=""></a>
<h2><a href="http://pagesix.com/2015/01/02/johnny-manziel-resolves-to-stop-party-antics-after-nye/">Johnny Football resolves to stop party antics — after NYE</a></h2>
</div>
<div class="rule"></div>
<h3><a href="http://pagesix.com/2015/01/02/coco-rocha-reveals-her-stickiest-fashion-show-situation/">Coco Rocha reveals her stickiest fashion show situation</a></h3>
<div class="rule"></div>
<h3><a href="http://pagesix.com/2015/01/02/vips-rally-behind-amy-adams-after-axed-today-interview/">VIPs rally behind Amy Adams after axed ‘Today’ interview</a></h3>
</div>
<div class="see-all">
<h3><a href="http://pagesix.com">SEE ALL</a></h3>
</div>
</div><div class="box module widget_nypost_decider_rss_widget"><div class="module-title"><h2>
<div class="module-title">
<h2>Now On</h2>
<a class="decider-icon" href="#">Decider</a>
</div>
</h2></div> <div class="module-wrapper">
<div class="story-photo-box">
<a href="http://decider.com/2015/01/02/ohio-state-cheater-or-not-video/"><img src="http://nypdecider.files.wordpress.com/2015/01/cg-abruptpullaway.gif?w=322&h=215&crop=1" alt=""></a>
<h2><a href="http://decider.com/2015/01/02/ohio-state-cheater-or-not-video/">Girl Gets Caught Cheating On National Television … Or Does She?</a></h2>
</div>
<div class="rule"></div>
<h3><a href="http://decider.com/2015/01/02/2015-midseason-premieres/">2015 Midseason Premiere Dates: When Your Favorite Show Is Coming Back – And Where You Can Stream It Now</a></h3>
<div class="rule"></div>
<h3><a href="http://decider.com/2014/12/31/14-best-sex-scenes-2014/">The 14 Hottest, Weirdest, And Shocking Sex Scenes Of 2014 (Gallery)</a></h3>