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
- In Virginia, Republicans attack the map and the right to vote - Democracy Docket - April 27th, 2026 [April 27th, 2026]
- Trump promised to defeat Republicans who rejected redistricting. Will it work? - WFYI - April 27th, 2026 [April 27th, 2026]
- Republicans Push for More Farm Aid as Pain Persists From Tariffs, Rising Costs - NOTUS News of the United States - April 27th, 2026 [April 27th, 2026]
- Republicans float bill requiring EBSA reports on enforcement, information-sharing agreements - Pensions & Investments - April 27th, 2026 [April 27th, 2026]
- Sky News Australia. . Overseas UK Chairman of Republicans Greg Swenson condemns CNNs reporting of the shooting at the White House Correspondents... - April 27th, 2026 [April 27th, 2026]
- A New Worry for Republicans: Latino Catholics Offended by Trump - The New York Times - April 27th, 2026 [April 27th, 2026]
- Independents and Republicans May Hold the Power in Los Angeles If They Actually Vote - The Fulcrum - April 27th, 2026 [April 27th, 2026]
- Ten Republicans voted against cruelty. In todays GOP, that takes guts: Leila Atassi - Cleveland.com - April 27th, 2026 [April 27th, 2026]
- LEADER JEFFRIES: DONALD TRUMP AND REPUBLICANS HAVE FAILED ON THE ECONOMY - Congressman Hakeem Jeffries (.gov) - April 27th, 2026 [April 27th, 2026]
- Republicans Are Tempting Fate With Floridas Redistricting - Bloomberg.com - April 27th, 2026 [April 27th, 2026]
- Conservative super PAC threatens to unseat Republicans over immigration bill - Reuters - April 27th, 2026 [April 27th, 2026]
- Assembly Republicans try to force vote on tax cuts for volunteer firefighters - Yahoo - April 27th, 2026 [April 27th, 2026]
- Trump participates in marathon Bible-reading event with other top Republicans - PBS - April 27th, 2026 [April 27th, 2026]
- Sky News Australia. . Overseas UK Chairman of Republicans Greg Swenson warns that rising political tensions in the United States are creating an... - April 27th, 2026 [April 27th, 2026]
- Big-name Republicans are balking at Trump taking a stake in Spirit Airlines. Heres why - CNN - April 27th, 2026 [April 27th, 2026]
- Sky News Australia. . Overseas UK Chairman of Republicans Greg Swenson criticises CNNs reaction to the shooting at the White House Correspondents... - April 27th, 2026 [April 27th, 2026]
- These Republicans think they can upset Gov. Tina Kotek this fall. Which one will get the chance? - OregonLive.com - April 27th, 2026 [April 27th, 2026]
- Only 8 Of 26 Republicans Investigating Epstein Say Theyre Against Pardoning Ghislaine Maxwell - Forbes - April 27th, 2026 [April 27th, 2026]
- Sky News Australia. . Overseas UK Chairman of Republicans Greg Swenson warns of the media's impact on unwell people and its potential to inspire... - April 27th, 2026 [April 27th, 2026]
- Shell Game Exposed: Republicans Are Cutting Your Medicare Benefits to Fund Tax Cuts for the 1%. - The Fulcrum - April 27th, 2026 [April 27th, 2026]
- California Republicans call it the Stop Nick Shirley Act. Heres who its supposed to help - CalMatters - April 27th, 2026 [April 27th, 2026]
- The Make America Healthy Again Movement Is Cooling on Trump and Republicans - The New York Times - April 27th, 2026 [April 27th, 2026]
- Marsha Blackburn Report: Democrats Tried to Rob Hard-working Americans, Republicans Put More Money in Their Pockets - Clarksville Online - April 27th, 2026 [April 27th, 2026]
- Republicans rush to close the gap in the final stretch of Virginia's redistricting election - NBC News - April 19th, 2026 [April 19th, 2026]
- Republicans worry White House nonsense is hurting midterm prospects - Politico - April 19th, 2026 [April 19th, 2026]
- House Republicans defend subsidizing luxury stadium suites over supporting victims of sex trafficking - Minnesota House of Representatives (.gov) - April 19th, 2026 [April 19th, 2026]
- In group chats and meetings, Republicans are privately petrified the Iran war could cost them the midterms - NBC News - April 19th, 2026 [April 19th, 2026]
- Wisconsin Republicans thumb their noses on their way out the door - Wisconsin Examiner - April 19th, 2026 [April 19th, 2026]
- TN Republicans and the politics of Christian nationalism | Opinion - The Tennessean - April 19th, 2026 [April 19th, 2026]
- Illinois House Republicans split on bill allowing eligible high schoolers to register to vote - WGLT - April 19th, 2026 [April 19th, 2026]
- David Jolly says he can rally both Democrats and frustrated Republicans to turn the state blue - Florida Politics - April 19th, 2026 [April 19th, 2026]
- Republicans Break Ranks in Humiliating Snub to Trump - The Daily Beast - April 19th, 2026 [April 19th, 2026]
- Some Republicans want to reverse GOP cuts to rural and tribal radio stations - current.org - April 19th, 2026 [April 19th, 2026]
- Chris Wright faced a big test this week. Republicans say he passed. - Politico - April 19th, 2026 [April 19th, 2026]
- Share of young men attending church is on the rise in a trend driven by Republicans, Gallup finds - Christian Post - April 19th, 2026 [April 19th, 2026]
- Two Ohio Republicans supported extending Haitian temporary protected status - The Columbus Dispatch - April 19th, 2026 [April 19th, 2026]
- Barrett gears up for tough campaign as McClain urges Republicans to stick to their guns - News From The States - April 19th, 2026 [April 19th, 2026]
- Republicans are moving to fund Homeland Security 'the hard way' after end of talks - Pittsburgh Post-Gazette - April 14th, 2026 [April 14th, 2026]
- Republicans big 2026 problem: An unhinged Trump who doesnt seem to care about them - CNN - April 14th, 2026 [April 14th, 2026]
- These are the tax cut proposals from Democrats and Republicans at the Minnesota Legislature - CBS News - April 14th, 2026 [April 14th, 2026]
- Why arent Republicans thrilled by the fall in teen pregnancies? | Arwa Mahdawi - The Guardian - April 14th, 2026 [April 14th, 2026]
- The hell with the midterms: Former NC governor says Republicans need to focus on economy, not war - NC Newsline - April 14th, 2026 [April 14th, 2026]
- Congressional Republicans are failing the Trump test - The Hill - April 14th, 2026 [April 14th, 2026]
- California Republicans are caught between Trump loyalty and winning swing districts - CalMatters - April 14th, 2026 [April 14th, 2026]
- This Is Going to Be a Tough Cycle for Us: Georgias Governor Has a Warning for Fellow Republicans - Politico - April 14th, 2026 [April 14th, 2026]
- Gov. Evers, Republicans still in talks about budget surplus - WSAW - April 14th, 2026 [April 14th, 2026]
- Republicans Were Relieved Trump Deleted an Image of Himself as Jesus - NOTUS - April 14th, 2026 [April 14th, 2026]
- Republicans pitch themselves as the best candidate to take on Kaptur - Toledo Blade - April 14th, 2026 [April 14th, 2026]
- In rebuke to Gov. Bill Lee, Tennessee Republicans fight to restore summer food program for kids - Tennessee Lookout - April 14th, 2026 [April 14th, 2026]
- Senate Republicans hold news conference after return from recess and DHS still shut down - WKNO FM - April 14th, 2026 [April 14th, 2026]
- Gov. Evers, Republicans still in talks about budget surplus - WSMV - April 14th, 2026 [April 14th, 2026]
- Mitt Romney returns to Massachusetts as a GOP outlier: "Republicans now salute and do what the president tells them." - CBS News - April 14th, 2026 [April 14th, 2026]
- WHAT THEYRE SAYING: Senate Democrats Increasingly Poised to Flip the Upper Chamber as Republicans Face Sour National Environment - dscc.org - April 14th, 2026 [April 14th, 2026]
- Republicans are moving to fund Homeland Security the hard way after end of talks - InformNNY.com - April 14th, 2026 [April 14th, 2026]
- Tennessee Republicans Are Pushing Bills Allowing Schools To Deny Enrollment To Undocumented Children - Know Your Rights Camp - April 14th, 2026 [April 14th, 2026]
- Opinion | Why Republicans Will Not Run Away From Trump - The New York Times - April 10th, 2026 [April 10th, 2026]
- Dan Patrick says Republicans will have a tough time holding Texas House majority in November - The Texas Tribune - April 10th, 2026 [April 10th, 2026]
- Republicans in Congress brace for a fight over the Iran war price tag - NPR - April 10th, 2026 [April 10th, 2026]
- Republicans Need Their Situation to Improve. Right Now, Trump isnt Helping - The Center for Politics at UVA - April 10th, 2026 [April 10th, 2026]
- North Carolina Republicans Are Trying to Give One of the Countrys Most Partisan Judges a Frightening New Power - Slate Magazine - April 10th, 2026 [April 10th, 2026]
- Republicans react to Democratic election wins in Wisconsin ahead of the 2026 midterm vote - PBS Wisconsin - April 10th, 2026 [April 10th, 2026]
- We lose the midterms: Republicans worry Iran might have already cost them Congress - Politico - April 10th, 2026 [April 10th, 2026]
- Some Republicans Vent Concern as Party Backs Trumps Iran Threat - The New York Times - April 10th, 2026 [April 10th, 2026]
- Republicans block effort to halt Trump's war with Iran after 'civilization' threat - NBC News - April 10th, 2026 [April 10th, 2026]
- House Republicans outline what it will take for them to vote on Bears bill - Capitol News Illinois - April 10th, 2026 [April 10th, 2026]
- Even some Republicans are against Trump's violence in Iran - Mother Jones - April 10th, 2026 [April 10th, 2026]
- Some Republicans Set Their Own Deadline on Iran War. Its Getting Close. - WSJ - April 10th, 2026 [April 10th, 2026]
- Only Republicans Invited to Iowa Intellectual Freedom Event - Inside Higher Ed - April 10th, 2026 [April 10th, 2026]
- Republicans will 'have a tough time' holding the Texas House, Patrick says - FOX 4 News Dallas-Fort Worth - April 10th, 2026 [April 10th, 2026]
- Hey, Kansas Republicans in D.C.: Maybe it's a good time to warn Trump against incinerating the world - Kansas Reflector - April 10th, 2026 [April 10th, 2026]
- 'That is not who we are': Some Republicans break with Trump over Iran threats - ABC News - April 10th, 2026 [April 10th, 2026]
- Voters Including Most Republicans Oppose Cutting Health Care to Fund War - Data For Progress - April 10th, 2026 [April 10th, 2026]
- MD Republicans irked at legislative policies as No Kings Act debated - Maryland Daily Record - April 10th, 2026 [April 10th, 2026]
- Republicans block bid to rein in Trump Iran war powers - Maryland Daily Record - April 10th, 2026 [April 10th, 2026]
- Latest election results give Republicans new reasons to reach for the panic button - MS NOW - April 10th, 2026 [April 10th, 2026]
- 'We got our butts kicked': Republicans reckon with Democratic success ahead of the midterms - Los Angeles Times - April 10th, 2026 [April 10th, 2026]
- Republicans fight among themselves over their long pre-election to-do list - Semafor - April 10th, 2026 [April 10th, 2026]
- Latino Republicans in South Texas Turn on Trump Over Birthright Citizenship - The New York Times - April 1st, 2026 [April 1st, 2026]
- MAGA Republicans Continue to Block Bipartisan Bill to Fund Department of Homeland Security - House.gov - April 1st, 2026 [April 1st, 2026]
- NH Republicans seek another expansion of right to try law for experimental medical treatments - News From The States - April 1st, 2026 [April 1st, 2026]