Republicans propose tax cuts to businesses that received PPP loans – WDJT
'); if(!WVM.IS_STREAMING){ $videoEl.append('' + '' + ''); } setTimeout(function(){ $('.mute-overlay').on('touchstart click', function(e){ if(e.handled === false) return; e.stopPropagation(); e.preventDefault(); e.handled = true; player.muted(false); //console.log("volumee " + WVM.activePlayer.volume()); $(this).hide(); $(this).css('display', 'none'); var currentTime = player.currentTime(); if(currentTime 0){ if(deviceName == 'desktop'){ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top; }else{ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top - $('.next-dropdown-accordion').height(); } if(deviceName == 'desktop'){ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); }else{ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); } WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); //console.log("container height: " + WVM.CONTAINER_HEIGHT); $(window).on( "resize", function() { if(deviceName == 'desktop'){ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top; }else{ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top - $('.next-dropdown-accordion').height(); } if(deviceName == 'desktop'){ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); }else{ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); } WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); console.log("container height: " + WVM.CONTAINER_HEIGHT); }); //console.log("VIDEOTOP: " + WVM.VIDEO_TOP); //console.log("VIDEOHEIGHT: " + WVM.VIDEO_HEIGHT); $(window).on( "scroll", function() { if(!WVM.IS_FLOATING){ if(deviceName == 'desktop'){ WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); }else{ WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId + " .hlsvideo-wrapper").height() + $('#media-container-' + videoId + " .now-playing-container").height(); } } //var top = $('#media-container-' + videoId).offset().top; var offset = WVM.VIDEO_TOP + (WVM.VIDEO_HEIGHT / 2); var offsetBack = WVM.VIDEO_TOP; var changed = false; //console.log("VIDEOTOP: " + WVM.VIDEO_TOP); //console.log("VIDEOHEIGHT: " + WVM.VIDEO_HEIGHT); //console.log("scrolltop " + $(window).scrollTop()); //only float if playing var isPlaying = WVM['player_state' + videoId]['IS_PLAYING'] || WVM['player_state' + videoId]['AD_IS_PLAYING']; if(isPlaying){ $('.vjs-loading-spinner').hide(); } var offsetFloatAd = 99999999; if(deviceName == 'desktop' && $('#float_anchor').length > 0){ offsetFloatAd = $('#float_anchor').offset().top - WVM.VIDEO_HEIGHT; //console.log("float anchor offset top " + offsetFloatAd); } if($(window).scrollTop() > offset && isPlaying && !WVM['player_state' + videoId]['CANCEL_FLOATING']){ $('#media-placeholder-' + videoId).height(WVM.CONTAINER_HEIGHT); $('#media-placeholder-' + videoId).css('display', 'block'); if(!WVM.IS_FLOATING){ changed = true; } WVM.IS_FLOATING = true; $('#media-container-' + videoId).addClass('floating-video'); var sWidth = window.innerWidth || document.documentElement.clientWidth; var sHeight = window.innerHeight || document.documentElement.clientHeight; if(sWidth > 900 && WADS.IS_STICKING){ $('#media-container-' + videoId).addClass('desktop-ad-is-sticky'); } else if(WADS.IS_STICKING){ if(!TOP_AD_VIEWED){ $('#media-container-' + videoId).addClass('mobile-ad-is-sticky'); }else{ $('#media-container-' + videoId).addClass('mobile-ad-is-sticky-noad'); } } else if(!WADS.IS_STICKING){ if(!TOP_AD_VIEWED){ $('#media-container-' + videoId).removeClass('desktop-ad-is-sticky'); }else{ $('#media-container-' + videoId).addClass('desktop-ad-is-sticky-noad'); } } //set right var sWidth = window.innerWidth || document.documentElement.clientWidth; var sHeight = window.innerHeight || document.documentElement.clientHeight; if(deviceName == 'desktop' || sWidth > 900){ var leftPos2 = $('aside').get(0).getBoundingClientRect().left; var leftPos = $('aside').offset().left ; $('#media-container-' + videoId).css('left', leftPos + "px"); var newWidth = Math.floor(sWidth / 3.5); $('#media-container-' + videoId).css('width', newWidth + "px"); } else{ $('#media-container-' + videoId).css('width', "100% !important"); $('#media-container-' + videoId + ' .now-playing-container').css('display', 'block'); $('#media-container-' + videoId + ' .next-dropdown-accordion').css('display', 'block'); } //floating-video $('#media-container-' + videoId + " " + '.page-carousel-wrapper').hide(); setTimeout(function(){ var hWrapper = $('.floating-video .hlsvideo-wrapper').height(); var npWidth = $('.floating-video .now-playing-container').height(); var ndWidth = $('.floating-video .next-dropdown-header').height() + 20; var scrollerHeight = sHeight - (hWrapper + npWidth + ndWidth); scrollerHeight = 180; //scrollerHeight = parseInt(scrollerHeight * 0.5); if(WVM.device_name == 'desktop'){ $('#media-container-' + videoId + " " + " .mobile-list-videos").height(scrollerHeight); } }, 100); }else if($(window).scrollTop() 0){ var container = document.querySelector('#page-carousel-' + fullVideoId); imagesLoaded( container, function() { var screenWidth = window.innerWidth || document.documentElement.clientWidth; if(screenWidth > 850){ WVM.IS_DESKTOP = true; $('#page-carousel-' + fullVideoId + ' .page-carousel-lg-slides').css('display', 'block'); WVM['player_settings' + fullVideoId].slider = $('#page-carousel-' + fullVideoId).bxSlider({ maxSlides: 4, minSlides: 4, slideWidth: 305, infiniteLoop: false, hideControlOnEnd: true, useCSS: true, pager: false, slideMargin: 15, moveSlides: 1, nextText: '', prevText: '' }); }else{ WVM.IS_DESKTOP = false; $('.page-carousel-wrapper').css('display', 'block'); } }); } }; WVM.setupToggleButton = function(fullVideoId, player){ if($('.nextplay-switch-' + fullVideoId).length > 0){ new DG.OnOffSwitchAuto({ cls:'.nextplay-switch-' + fullVideoId, height: 24, trackColorOn:'#F9F9F9', trackColorOff:'#222', textColorOn: '#222', textColorOff: '#222', textOn:'On', textOff:'Off', listener:function(name, checked){ var theVal = 1; if(!checked){ theVal = 0; } $.ajax({ url: '/ajax/update_autoplay_video/', data: { autoplay_on: theVal }, type: 'POST', dataType: 'json', success: function(data) { WVM['player_settings' + fullVideoId]['autoplay'] = checked; }, error : function(){ console.log("Error loading video"); } }); } }); } }; WVM.setupAccordionButton = function(fullVideoId){ var deviceName = 'desktop'; $('#next-dropdown-accordion-button-' + fullVideoId).on('click', function(){ if($(this).find('i').hasClass('fa-chevron-up')){ //hide $(this).find('i').removeClass('fa-chevron-up'); $(this).find('i').addClass('fa-chevron-down'); if(deviceName == "desktop" && !$('#media-container-' + fullVideoId).hasClass('floating-video')){ $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').slideUp(); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').hide(); }else{ $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').slideUp(); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').hide(); } var currVideoId = WVM['player_state' + fullVideoId]['VIDEO_ID']; var nextVideoId = WVM.getNextPlaylistIndex(currVideoId); //playerId, mediaId, fieldName var myTitle = WVM.getPlaylistData(fullVideoId, nextVideoId, 'noprefixtitle'); //alert("Getting title " + myTitle); $('#video-slider-nexttitle' + fullVideoId).css('display', 'inline'); $('#video-slider-nexttitle' + fullVideoId).html(myTitle); }else{ //expand $(this).find('i').addClass('fa-chevron-up'); $(this).find('i').removeClass('fa-chevron-down'); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').css('display', 'block'); if(deviceName == "desktop" && !$('#media-container-' + fullVideoId).hasClass('floating-video')){ $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').css('display', 'block'); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').slideDown(); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').hide(); if(!WVM.player_state148827['CAROUSEL_INIT']){ WVM.setupCarousel(fullVideoId); } }else{ $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').slideDown(); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').hide(); if(!$('#media-container-' + fullVideoId).hasClass('floating-video')){ if(!WVM.player_state148827['CAROUSEL_INIT']){ WVM.setupCarousel(fullVideoId); } } } $('#video-slider-nexttitle' + fullVideoId).css('display', 'none'); } }); var currVideoId = WVM['player_state' + fullVideoId]['VIDEO_ID']; //console.log("current Video " + currVideoId); var nextVideoId = WVM.getNextPlaylistIndex(currVideoId); var myTitle = WVM.getPlaylistData(fullVideoId, nextVideoId, 'noprefixtitle'); //console.log("setting title " + myTitle); $('#video-slider-nexttitle' + fullVideoId).css('display', 'inline'); $('#video-slider-nexttitle' + fullVideoId).html(myTitle); }; WVM.sendbeacon = function(action, nonInteraction, value, eventLabel) { var eventCategory = 'Video'; if (window.ga) { //console.log("sending action: " + action + " val: " + value + " label " + eventLabel); ga('send', 'event', { 'eventCategory': eventCategory, 'eventAction': action, 'eventLabel': eventLabel, 'eventValue': value, 'nonInteraction': nonInteraction }); } }; WVM.getNextPlaylistIndex = function(mediaId, returnArrayIndex){ var currId = null; if(mediaId == null){ return null; } for(var x =0; x 20){ if(fullDuration > 1 && ((fullDuration - fullCurrent) > 1) && !$('.vjs-loading-spinner').hasClass('badspinner')){ console.log("hiding spinner"); $('.vjs-loading-spinner').addClass('badspinner'); } } var duration_time = Math.floor(this.duration()); //this is a hack because the end video event is not firing... var current_time = Math.floor(this.currentTime()); if ( current_time > 0 && ( fullCurrent >= (fullDuration - 10) )){ var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ if('desktop' == "iphone" && playerState.AD_ERROR){ console.log("skipped timeupdate end"); }else{ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } } } if(!playerState.START_SENT){ WVM.sendbeacon('start', true, playerState.VIDEO_ID, playerState.VIDEO_TITLE); playerState.START_SENT = true; } var currentTime, duration, percent, percentPlayed, _i; currentTime = Math.round(this.currentTime()); duration = Math.round(this.duration()); percentPlayed = Math.round(currentTime / duration * 100); for (percent = _i = 0; _i = percent && __indexOf.call(playerState['PERCENTS_TRACKED'], percent) 0) { playerState['PERCENTS_TRACKED'].push(percent); } } } }); //player.off('ended'); player.on('ended', function(){ console.log("ended"); playerState.IS_PLAYING = false; WVM.sendbeacon("complete", true, playerState.VIDEO_ID, playerState.VIDEO_TITLE); var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); }else{ console.log("Playlist complete (no more videos)"); } }); //player.off('adserror'); player.on('adserror', function(e){ //$('#ima-ad-container').remove(); WVM.lastAdRequest = new Date().getTime() / 1000; console.log(e); console.log("ads error"); var errMessage = e['data']['AdError']['l']; playerState.AD_IS_PLAYING = false; playerState.IS_PLAYING = false; // && errMessage == 'The VAST response document is empty.' if(!playerState.AD_ERROR){ var dTime = new Date().getTime(); WVM.firstPrerollTagUrl = WVM.getFirstPrerollUrl(); console.log("calling backup ad tag url: " + WVM.firstPrerollTagUrl); WVM.activePlayer.ima.changeAdTag(WVM.firstPrerollTagUrl + "?" + dTime); WVM.activePlayer.ima.requestAds(); //WVM.activePlayer.src({ // src: masterSrc, // type: 'video/mp4' //}); //WVM.firstPrerollTagUrl = ""; } playerState.AD_ERROR = true; }); //player.off('error'); player.on('error', function(event) { if (player.error().code === 4) { player.error(null); // clear out the old error player.options().sources.shift(); // drop the highest precedence source console.log("now doing src"); console.log(player.options().sources[0]); player.src(player.options().sources[0]); // retry return; } }); //player.off('volumechange'); player.on('volumechange', function(event) { console.log(event); var theHeight = $('#media-container-' + playerState.ORIGINAL_ID + ' .vjs-volume-level').css('height'); var cssVolume = 0; if(theHeight){ cssVolume = parseInt(theHeight.replace('%', '')); } var theVolume = player.volume(); if(theVolume > 0.0 || cssVolume > 0){ $('#media-container-' + playerState.ORIGINAL_ID + ' .mute-overlay').css('display', 'none'); }else{ $('#media-container-' + playerState.ORIGINAL_ID + ' .mute-overlay').css('display', 'block'); } }); WVM.reinitRawEvents(playerState.ORIGINAL_ID); setInterval(function(){ WVM.reinitRawEvents(playerState.ORIGINAL_ID); }, 2000); } if(!WVM.rawCompleteEvent){ WVM.rawCompleteEvent = function(e){ var playerState = WVM['player_state148827']; console.log("firing raw event due to all other events failing"); var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } }; } if(!WVM.rawTimeupdateEvent){ WVM.rawTimeupdateEvent = function(e){ var playerState = WVM['player_state148827']; var rawVideoElem = document.getElementById('html5-video-' + playerState['ORIGINAL_ID'] + '_html5_api'); var fullCurrent = rawVideoElem.currentTime * 1000; var fullDuration = rawVideoElem.duration * 1000; var current_time = Math.floor(rawVideoElem.currentTime); console.log("raw timeupdate: " + fullCurrent + " out of " + fullDuration); if ( current_time > 0 && ( fullCurrent >= (fullDuration - 50) )){ var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); if(newMediaId){ console.log("loading new video from rawtimeupdate"); WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } } if(!$('.vjs-loading-spinner').hasClass('badspinner')){ $('.vjs-loading-spinner').addClass('badspinner') } }; } WVM.reinitRawEvents = function(playerId){ var playerState = WVM['player_state' + playerId]; var rawVideoElem = document.getElementById('html5-video-' + WVM['player_state' + playerId]['ORIGINAL_ID'] + '_html5_api'); //COMPLETE EENT if( WVM['player_state' + playerId].COMPLETE_EVENT){ rawVideoElem.removeEventListener('ended', WVM.rawCompleteEvent, false); } rawVideoElem.addEventListener('ended', WVM.rawCompleteEvent, false); //TIME UPDATE EVENT if( WVM['player_state' + playerId].TIMEUPDATE_EVENT){ rawVideoElem.removeEventListener('ended', WVM.rawTimeupdateEvent, false); } rawVideoElem.addEventListener('ended', WVM.rawTimeupdateEvent, false); WVM['player_state' + playerId].COMPLETE_EVENT = true; WVM['player_state' + playerId].TIMEUPDATE_EVENT = true; };
MADISON, Wis. (CBS 58) -- Help could be on the way for businesses who are facing unexpected costs after receiving PPP loans geared towards keeping businesses afloat during the pandemic.
The Legislatures budget committee approved a plan to give $540 million in tax cuts over the next three years to PPP recipients. It now heads to the Assembly for a vote on Tuesday.
Businesses incurred costs after realizing they are required to pay thousands in state taxes for their PPP loans issued by the federal government. Many business owners believed the loan would be treated as a grant, but under Wisconsin law, its not tax-deductible, but is at the federal level.
It was definitely a surprise, said Mike Doble, owner of Explorium Brewpub.
PPP loans were a lifeline to Doble and several others across the state which helped the restaurants and bar industry pay rent and keep staff on the payroll. Doble was not aware after spending his PPP loan that it would eventually cost him about $20,000 in state income taxes.
I didnt save any of that (PPP) money, he said. I used it for what it was intended to be, which was to get people back to work.
If lawmakers dont approve the proposal by April 15, businesses will be left to foot the cost.
Dont tax us on money that was intended to bail us out of a very bad situation, said Doble.
The IRS originally told businesses their loans would be forgiven, but later realized that wasn't how the law was written under the federal COVID-19 relief act. Members of Congress passed a proposal in the second relief package to fix the error, but some states -- like Wisconsin -- have to come up with a solution on their own.
Roughly speaking, for every $100,000 in PPP loans that have been taken out, our members could see anywhere from $6,000-8,000 of increases on their taxes, said Cory Fish, Wisconsin Manufacturers & Commerce general counsel and director of tax, transportation & legal affairs.
The proposal to give tax cuts to PPE recipients does have bipartisan support. Some Democrats oppose the measure because they believe tax relief should be broader and offered to other businesses hardest hit by the pandemic.
View original post here:
Republicans propose tax cuts to businesses that received PPP loans - WDJT
- The Republicans Breaking Ranks With Trump Over Greenland Threats: This Is Appalling - Time Magazine - January 8th, 2026 [January 8th, 2026]
- Republicans push back on White House military threat toward Greenland - The Washington Post - January 8th, 2026 [January 8th, 2026]
- 9 Republicans back Dem effort to revive Obamacare subsidies - Politico - January 8th, 2026 [January 8th, 2026]
- Democrats and Republicans outline priorities for this year's legislative session - Maine Public - January 8th, 2026 [January 8th, 2026]
- Pallone: Republicans Would Rather Redefine Showerheads Than Lower the Price of Anything - Democrats, Energy and Commerce Committee | (.gov) - January 8th, 2026 [January 8th, 2026]
- WATCH: Trump says Republicans need to win midterms or 'I'll get impeached' - PBS - January 8th, 2026 [January 8th, 2026]
- Trump warns Republicans they have to win midterms or he'll 'get impeached' - abcnews.go.com - January 8th, 2026 [January 8th, 2026]
- Republicans silent and Democrats incensed on fifth anniversary of US Capitol attack - The Guardian - January 8th, 2026 [January 8th, 2026]
- Republicans accidentally protected abortion while trying to kill Obamacare - vox.com - January 8th, 2026 [January 8th, 2026]
- House Republicans move to rebuke Trump on two fronts - Semafor - January 8th, 2026 [January 8th, 2026]
- President Trump Meets with House Republicans at the Kennedy Center - C-SPAN - January 8th, 2026 [January 8th, 2026]
- Gov. Walz to Republicans: Expect me to ride you like youve never been ridden - Minnesota Reformer - January 8th, 2026 [January 8th, 2026]
- Republicans skeptical Trump will use military action against Greenland - USA Today - January 8th, 2026 [January 8th, 2026]
- Beshear lays out vision for Kentucky budget. Republicans have their own - The Courier-Journal - January 8th, 2026 [January 8th, 2026]
- Ohio Republicans created an electricity bill crisis. Is the Supreme Court their exit? - Cleveland.com - January 8th, 2026 [January 8th, 2026]
- Trump and House Republicans are meeting to talk about their election year agenda - abcnews.go.com - January 8th, 2026 [January 8th, 2026]
- Senate Democrats tried to do this last year. Republicans blocked it. - x.com - January 8th, 2026 [January 8th, 2026]
- Republicans Insist Affordability Campaign Won't Be Overshadowed by Trump's Venezuela Push - NOTUS News of the United States - January 8th, 2026 [January 8th, 2026]
- Congressional Republicans are running out of powers to give Trump - CNN - January 8th, 2026 [January 8th, 2026]
- Tim Walz Isnt Running for Reelection. That Complicates Republicans Plans. - NOTUS News of the United States - January 8th, 2026 [January 8th, 2026]
- Republicans take voter registration lead from Democrats in crucial swing state for the first time - Fox News - January 6th, 2026 [January 6th, 2026]
- NH Republicans try again for limits on school discussions, bathrooms - Seacoastonline.com - January 6th, 2026 [January 6th, 2026]
- Trump to meet with House Republicans to discuss Venezuela, other topics - NPR - January 6th, 2026 [January 6th, 2026]
- Trump and House Republicans are meeting to talk about their election-year agenda - nashuatelegraph.com - January 6th, 2026 [January 6th, 2026]
- Trump and House Republicans are meeting to talk about their election year agenda - AP News - January 6th, 2026 [January 6th, 2026]
- A few Republicans have crypto's destiny in their hands at the SEC, CFTC - CoinDesk - January 6th, 2026 [January 6th, 2026]
- Even Republicans are challenging Trump's claim that his Venezuela campaign is about drugs - Mother Jones - January 6th, 2026 [January 6th, 2026]
- Trump, House Republicans meeting to talk about their election year agenda - The Tribune-Democrat - January 6th, 2026 [January 6th, 2026]
- Minnesota Republicans say Tim Walz not off the hook after dropping re-election bid - Fox News - January 6th, 2026 [January 6th, 2026]
- Trump and House Republicans are meeting to talk about their election-year agenda - The Killeen Daily Herald - January 6th, 2026 [January 6th, 2026]
- Jordan: Republicans Can Keep The House If We Continue To Remind Voters What The Left Actually Stands For - FOX News Radio - January 6th, 2026 [January 6th, 2026]
- Trump administration to brief some in Congress as Republicans and Democrats react to Venezuela moves - CBS News - January 6th, 2026 [January 6th, 2026]
- Who thinks Republicans will suffer in the 2026 midterms? Republican members of Congress - Kansas Reflector - January 4th, 2026 [January 4th, 2026]
- Top Republicans backpedal from Trump claim that US will run Venezuela - The Guardian - January 4th, 2026 [January 4th, 2026]
- Republicans rally behind Trump's Venezuela strikes. 'Going to face justice.' - USA Today - January 4th, 2026 [January 4th, 2026]
- The Situation: What Were House Republicans Thinking? - lawfaremedia.org - January 4th, 2026 [January 4th, 2026]
- Republicans on Government Oversight call for answers about Milford toddler death - WABI - January 4th, 2026 [January 4th, 2026]
- Thoughts on the seeming goals of Republicans [letter] - LancasterOnline - January 4th, 2026 [January 4th, 2026]
- Democrats won 90% of key races in 2025, and Republicans are jumping ship | Column - PennLive.com - January 4th, 2026 [January 4th, 2026]
- Conservative group: Prominent CT university has no Republicans in 27 departments. Called imbalance - Hartford Courant - January 2nd, 2026 [January 2nd, 2026]
- Robinson submits request to restore funding for local projects - Michigan House Republicans - January 2nd, 2026 [January 2nd, 2026]
- Republicans want comprehensive oversight of Michigans 2026 election. What does that mean? - Santa Fe New Mexican - January 2nd, 2026 [January 2nd, 2026]
- Some Republicans Are Fretting Over Their Partys Ability to Message - NOTUS News of the United States - January 2nd, 2026 [January 2nd, 2026]
- In 2026, Republicans Will Have To Decide What Comes After Trump - Reason Magazine - January 2nd, 2026 [January 2nd, 2026]
- Video: Rep. James Walkinshaw (D-VA11) Says Republicans in Washington dont want to acknowledge Donald Trumps culpability with respect to January 6, But... - January 2nd, 2026 [January 2nd, 2026]
- House Republicans Buried the Jack Smith Transcript on New Years Eve. I Read It So You Dont Have To. - The Present Age | Parker Molloy - January 2nd, 2026 [January 2nd, 2026]
- Republicans don't have a 'name' Senate candidate in Virginia. Here are the challenges they face. - Cardinal News - January 2nd, 2026 [January 2nd, 2026]
- 'Tip of the iceberg': Maine Republicans call for investigation into alleged MaineCare fraud - newscentermaine.com - January 2nd, 2026 [January 2nd, 2026]
- Clock runs out on extending Obamacare subsidies, as health care price hikes rock Republicans - New York Post - January 2nd, 2026 [January 2nd, 2026]
- Axelrod: Trumps Marie Antoinette thing could cost Republicans in midterms - The Hill - January 2nd, 2026 [January 2nd, 2026]
- Shawn Harris was ready to defeat Marjorie Taylor Greene. Now he awaits Republicans next move - The Guardian - January 2nd, 2026 [January 2nd, 2026]
- Why the Democrats are more united than Republicans - UnHerd - January 2nd, 2026 [January 2nd, 2026]
- More House Republicans are leaving Congress to run for governor than in decades amid frustration over 'toxic environment' - MSN - December 27th, 2025 [December 27th, 2025]
- Republicans weigh second reconciliation bill despite long odds in Congress - Fox Business - December 27th, 2025 [December 27th, 2025]
- Four Republicans join Democrats to force vote on bill that would extend Obamacare subsidies - The Guardian - December 18th, 2025 [December 18th, 2025]
- House Republicans pass health care plan without re-upping insurance subsidies - Politico - December 18th, 2025 [December 18th, 2025]
- Fact-checking Trump's speech and centrist Republicans' health care revolt: Morning Rundown - NBC News - December 18th, 2025 [December 18th, 2025]
- Obamacares popularity is the Republicans problem - Brookings - December 18th, 2025 [December 18th, 2025]
- Voters are mad about utility bills. Republicans are blaming some in their own party - CNN - December 18th, 2025 [December 18th, 2025]
- Another poll shows two Republicans leading governors race. Should CA Dems fret? - Sacramento Bee - December 18th, 2025 [December 18th, 2025]
- An Overview of Trump Administration and Congressional Republicans Anti-Affordability Measures - Center on Budget and Policy Priorities - December 18th, 2025 [December 18th, 2025]
- Sarah McBride Lobbied Some Republicans to Vote Against an Anti-Trans Bill - NOTUS News of the United States - December 18th, 2025 [December 18th, 2025]
- Republicans are trying to change the subject on health care affordability to transgender care - Politico - December 18th, 2025 [December 18th, 2025]
- House Republicans Block Vote on ACA Subsidy Extension - The American Journal of Managed Care (AJMC) - December 18th, 2025 [December 18th, 2025]
- Here are the 4 Republicans that broke party lines to force health care subsidies vote - LiveNOW from FOX - December 18th, 2025 [December 18th, 2025]
- Speaker Johnson unveils health care plan as divided Republicans scramble for alternative - AP News - December 18th, 2025 [December 18th, 2025]
- STATEMENT: Republicans Flee D.C., Leaving Millions to Face the GOPs Health Care Crisis - Protect Our Care - December 18th, 2025 [December 18th, 2025]
- "Cash is king": Senate Republicans sound bullish on the Midwest - Axios - December 18th, 2025 [December 18th, 2025]
- Iowa Republicans vote for health care bill without ACA subsidy renewal - The Des Moines Register - December 18th, 2025 [December 18th, 2025]
- Four centrist House Republicans join Dems to force vote on extension of health care subsidies - The Lund Report - December 18th, 2025 [December 18th, 2025]
- These House Republicans Wont Commit to Running in 2026 - NOTUS News of the United States - December 18th, 2025 [December 18th, 2025]
- Discussing whether Republicans will extend Obamacare: Thiessen on Fox News Audio's 'Brian Kilmeade Show' - American Enterprise Institute - AEI - December 18th, 2025 [December 18th, 2025]
- Republicans push mail-in voting for the midterms in defiance of Trump - Politico - December 18th, 2025 [December 18th, 2025]
- House Republicans advance sweeping anti-trans bills ahead of holiday break - The 19th News - December 18th, 2025 [December 18th, 2025]
- Assembly Republicans Mourn the Passing of McCarthy Patrick - Insider NJ - December 18th, 2025 [December 18th, 2025]
- Republicans Clinch Democrats Bid to Force Vote on ACA Subsidies - The New York Times - December 18th, 2025 [December 18th, 2025]
- Gov. Walz calls on House Republicans to provide whistleblower fraud tips to DHS, BCA - 5 EYEWITNESS NEWS - December 18th, 2025 [December 18th, 2025]
- NEW POLL: Voters See Trump and Republicans Jacking Up Health Care Costs While Democrats Are Fighting to Lower Them - Protect Our Care - December 18th, 2025 [December 18th, 2025]
- Rep. Dan Newhouse, one of the last remaining House Republicans who voted to impeach Trump, won't seek re-election - NBC News - December 18th, 2025 [December 18th, 2025]
- Trump speech draws mixed reviews from Connecticut Republicans and Democrats - New Haven Register - December 18th, 2025 [December 18th, 2025]