Personalize your weather by entering a location.
Sorry, but the location you entered was not found. Please try again.
6abc
6abc Philadelphia
Sections Traffic Video PhiladelphiaPennsylvaniaNew JerseyDelaware
Home AccuWeather Traffic Video Photos Apps
Local News
PhiladelphiaPennsylvaniaNew JerseyDelaware
Categories
U.S. & World Healthcheck Consumer Saving with 6abc Community News Sports
Troubleshooters Investigation Entertainment Politics 6abc Loves the Arts Jim Gardner One-on-One
Station Info
About 6abc/Contact Us! Action News Biographies 6abc Contests & Promotions TV Listings Jobs & Internships at 6abc Community
Shows
Watch Action News Online FYI Philly High School Huddle Live Well Network Laff TV Puerto Rican Panorama
Join the Action! Send your pictures and videos to Action News!
Follow Us
FacebookTwitterGoogle+Newsletters

Video

Live Video
WATCH ACTION NEWS ONLINE
Watch Live
ACTION NEWS LIVE UPDATES @ 10am, 3pm and 9pm
With WATCH ABC you can view the ABC network live or on demand.
SEE ALL ABC SHOWS
6abc Philadelphia
  • Home
  • AccuWeather
  • Traffic
  • Local News
      PhiladelphiaPennsylvaniaNew JerseyDelaware
  • Categories
      Video Photos U.S. & World Healthcheck Consumer Saving with 6abc Community News Sports
  • Station Info
      About 6abc/Contact Us! Action News Biographies 6abc Contests & Promotions TV Listings Jobs & Internships at 6abc Community
  • Shows
      Watch Action News Online FYI Philly High School Huddle Live Well Network Laff TV Puerto Rican Panorama
  • Apps
Follow Us
FacebookTwitterGoogle+Newsletters
Home AccuWeather Traffic Video Photos Apps
PhiladelphiaPennsylvaniaNew JerseyDelaware
U.S. & World Healthcheck Consumer Saving with 6abc Community News Sports
About 6abc/Contact Us! Action News Biographies 6abc Contests & Promotions TV Listings Jobs & Internships at 6abc Community
Privacy Policy Children's Privacy Policy Your California Privacy Rights
Terms of Use Interest-Based Ads Public Inspection File
Copyright © 2015 ABC Inc., WPVI-TV Philadelphia. All Rights Reserved.
Personalize your weather by entering a location.
Sorry, but the location you entered was not found. Please try again.
6abc
6abc Philadelphia
Sections Traffic Video PhiladelphiaPennsylvaniaNew JerseyDelaware
Home AccuWeather Traffic Video Photos Apps
Local News
PhiladelphiaPennsylvaniaNew JerseyDelaware
Categories
U.S. & World Healthcheck Consumer Saving with 6abc Community News Sports
Troubleshooters Investigation Entertainment Politics 6abc Loves the Arts Jim Gardner One-on-One
Station Info
About 6abc/Contact Us! Action News Biographies 6abc Contests & Promotions TV Listings Jobs & Internships at 6abc Community
Shows
Watch Action News Online FYI Philly High School Huddle Live Well Network Laff TV Puerto Rican Panorama
Join the Action! Send your pictures and videos to Action News!
Follow Us
FacebookTwitterGoogle+Newsletters
Follow Us
FacebookTwitterGoogle+Newsletters
Privacy Policy Children's Privacy Policy Your California Privacy Rights
Terms of Use Interest-Based Ads Public Inspection File
Copyright © 2015 ABC Inc., WPVI-TV Philadelphia
'); } else { $('.body-text').before('
'); } var oneIdInfo = $('#oneIdInfo'); if(userFlow == "newsletter") { oneIdInfo.append('

Success! You\'re set to receive messages & updates

Use the link below to manage your profile information and email messages

'); oneIdInfo.append('

FIRST NAME : ' + firstName + '

'); oneIdInfo.append('

LAST NAME : ' + lastName + '

'); oneIdInfo.append('

EMAIL ADDRESS : ' + emailAddress + '

'); oneIdInfo.append('
'); var oneIdControls = $('#oneIdControls'); oneIdControls.append('Manage Account'); oneIdControls.append('Log Out'); $('.profile').on('click', function() { did.launchProfile(); }); $('.signout').on('click', function() { did.logout(); }); } else if(userFlow == "sweeps") { if ($('#sweepsMessage').length) { $('#sweepsMessage').empty(); $('#sweepsMessage').removeClass('message-error'); $('#sweepsMessage').removeClass('message-success'); $('#sweepsMessage').css({ 'background-color' : '', 'border' : '', 'border-radius' : '', 'padding' : '' }); } else { oneIdInfo.before('
'); } if(ageBand == "ADULT") { $.get( "http://6abc.com/extras/promos/sweepsForm", { station: stationId, code: sweepsCode, SWID: swid } ) .done(function( data ) { $(".register").hide(); oneIdInfo.append(data); oneIdInfo.append('
'); var oneIdControls = $('#oneIdControls'); oneIdControls.append('Manage Account'); oneIdControls.append('Enter Sweepstakes'); oneIdControls.append('Log Out'); $('.profile').on('click', function() { did.launchProfile(); }); $('input.form-control').on('click', function() { did.launchProfile(); }); $('.signout').on('click', function() { did.logout(); $('#sweepsMessage').remove(); $('body').animate({scrollTop:0}, '500'); }); $('#oneIdInfo').find('a.fancybox').fancybox(); $('.enter-sweeps').hide(); identity.validateSweepsInfo() }); } else { $("#sweepsMessage").show(); identity.displayMessage("error", "Must be 18 years or older to enter"); oneIdInfo.append('
'); var oneIdControls = $('#oneIdControls'); oneIdControls.append('Manage Account'); oneIdControls.append('Log Out'); } } } }, validateSweepsInfo: function() { var errorCount = 0; $('input.form-control').css("border-color", "#E0E0E0"); $('.enter-sweeps').unbind('click'); $('.enter-sweeps').hide(); did.getGuest().then(function(guest) { $('input#firstName').val(guest.profile.firstName); $('input#lastName').val(guest.profile.lastName); $('input#emailAddress').val(guest.profile.email); if(guest.profile.addresses !== null) { guest.profile.addresses.forEach(function(address) { if(address.type !== null && address.type === 'HOME'){ if (typeof address.line1 !== "undefined" && address.line1 !== null) { $('input#line1').val(address.line1); } else { $('input#line1').val(""); $('input#line1').css("border-color", "red"); errorCount++; } if(typeof address.city !== "undefined" && address.city !== null) { $('input#city').val(address.city); } else { $('input#city').val(""); $('input#city').css("border-color", "red"); errorCount++; } if(typeof address.stateProvince !== "undefined" && address.stateProvince !== null) { $('input#stateProvince').val(address.stateProvince); } else { $('input#stateProvince').val(""); $('input#stateProvince').css("border-color", "red"); errorCount++; } if(typeof address.postalCode !== "undefined" && address.postalCode !== null) { $('input#postalCode').val(address.postalCode); } else { $('input#postalCode').val(""); $('input#postalCode').css("border-color", "red"); errorCount++; } } else { $('input#line1, input#city, input#stateProvince, input#postalCode').css("border-color", "red"); errorCount = 4; } }); } else { $('input#line1, input#city, input#stateProvince, input#postalCode').css("border-color", "red"); errorCount = 4; } if(guest.profile.phones !== null) { guest.profile.phones.forEach(function(phone){ if(phone.type !== null && phone.type === 'DAY'){ if(phone.number !== null) { $('input#dayNumber').val(phone.number); } else { $('input#dayNumber').val(""); $('input#dayNumber').css("border-color", "red"); errorCount++; } } }); } else { $('input#dayNumber').val(""); $('input#dayNumber').css("border-color", "red"); errorCount++; } if(errorCount === 0) { $('.enter-sweeps').show(); $('.enter-sweeps').on('click', function() { $('#sweepsMessage').empty(); $("#sweepsMessage").show(); identity.enterSweeps("test"); }); } }); }, enterSweeps: function(extra) { var uid = $('#sweepsForm').find('input#uId').val(); var messagePosition = $('#sweepsMessage').position(); var offsetPosition = messagePosition.top - 100; $.get( "http://6abc.com/extras/promos/sweepsEntry", { station: stationId, uId: uid, extra: extra } ) .done(function( data ) { if(data === 'success') { identity.displayMessage("success", "Your sweepstakes entry has been made!"); $('body').animate({ scrollTop:offsetPosition }, '500'); did.logout(); } else { identity.displayMessage("error", data); $('body').animate({ scrollTop:offsetPosition }, '500'); } }); }, updateUserInfo: function(guest) { if(userFlow == "newsletter") { $(".didFirstName").text(guest.profile.firstName); $(".didLastName").text(guest.profile.lastName); $(".didEmailAddress").text(guest.profile.email); } else { identity.validateSweepsInfo(); identity.enableButtons(); $("#sweepsMessage").show(); identity.displayMessage("success", "Account information has been updated!"); } }, displayMessage: function(status, description) { var messagePosition = $('#sweepsMessage').position(); var offsetPosition = messagePosition.top - 100; if(status == "error") { $('#sweepsMessage').addClass('message-error'); $('#sweepsMessage').html(description); $('#sweepsMessage.message-error').css({ 'background-color' : '#EFD6D4', 'border' : '1px solid #EA0E01', 'border-radius' : '.5em', 'padding' : '2em' }); } else { $('#sweepsMessage').addClass('message-success'); $('#sweepsMessage').html('SUCCESS - ' + description); $('#sweepsMessage.message-success').css({ 'background-color' : '#ddefd4', 'border' : '1px solid #008000', 'border-radius' : '.5em', 'padding' : '2em' }); } $('body').animate({ scrollTop:offsetPosition }, '500'); $("#sweepsMessage").fadeOut(6000); }, closeUI: function() { }, userCreated: function() { }, showUserLoggedOut: function() { if ($('#oneIdInfo').length) { $('.story-body.inner.clone').show(); $('.story-body.inner.clone').removeClass('clone'); $('.story-body.inner.original').hide(); $('.story-body.inner.original').remove(); $('#oneIdInfo').remove(); identity.enableButtons(); $(".register").show(); } } }; did.on('login', identity.showUserLoggedIn); did.on('logout', identity.showUserLoggedOut); did.on('update', identity.updateUserInfo); did.on('create', identity.userCreated); //did.on('error', ); save for analytics call //did.on('opt-in', ); save for analytics call did.on('close', identity.closeUI); did.init().then(function(data) { userFlow = $(".register").data('flow'); sweepsCode = $(".register").data('code'); identity.enableButtons(); data.loggedIn ? identity.showUserLoggedIn(data.guest) : identity.showUserLoggedOut(); });