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
- Trump imposed new taxes with only a wave of his hand, and Nevada Republicans are fine with that - Nevada Current - April 25th, 2025 [April 25th, 2025]
- Michigan House Republicans want to shift who has the power to appoint the state superintendent - Michigan Advance - April 25th, 2025 [April 25th, 2025]
- How 3 Republicans survived their town halls - Politico - April 25th, 2025 [April 25th, 2025]
- People think Republicans arent perfect, but the other side is crazy: Sen. John Kennedy - Fox News - April 25th, 2025 [April 25th, 2025]
- Republicans Killed 43 Democratic Voucher Amendments. See What They Opposed. - Reform Austin - April 25th, 2025 [April 25th, 2025]
- A dozen House Republicans fire warning shot to Mike Johnson on Medicaid cuts - Axios - April 18th, 2025 [April 18th, 2025]
- Republicans in many states forge ahead with bills requiring proof of citizenship to vote - The Guardian - April 18th, 2025 [April 18th, 2025]
- Michigan House Republicans want the State Board of Education to lose this power - Chalkbeat - April 18th, 2025 [April 18th, 2025]
- Republicans reconsider their commitment to tax cuts for the rich in Trump agenda bill - NBC News - April 18th, 2025 [April 18th, 2025]
- House Republicans refuse to pass ceremonial resolution honoring Cecile Richards - The Texas Tribune - April 18th, 2025 [April 18th, 2025]
- Republicans Are Trying to Steal an Election - Democracy Docket - April 18th, 2025 [April 18th, 2025]
- Capital Tonight: Texas Republicans clear major hurdle in passing school vouchers - Spectrum News - April 18th, 2025 [April 18th, 2025]
- Polling shows growing number of Republicans identify with the MAGA movement - NBC News - April 18th, 2025 [April 18th, 2025]
- Republicans Debate Higher Taxes on the Rich - The New York Times - April 18th, 2025 [April 18th, 2025]
- Moderate Republicans draw the line on Medicaid cuts in upcoming tax bill fight - Deseret News - April 18th, 2025 [April 18th, 2025]
- Colorado Republicans want the feds to intervene in freshly signed gun law - Colorado Public Radio - April 18th, 2025 [April 18th, 2025]
- A billionaire blasted Miami Republicans on immigration. Maybe Rubio, others will listen | Opinion - Miami Herald - April 18th, 2025 [April 18th, 2025]
- California Republicans want to get tougher on crime. Are Democrats shifting their way? - Long Beach Post - April 18th, 2025 [April 18th, 2025]
- Anthony Scaramucci thinks Republicans will turn on Trump and explains how Democrats should join the fight - Business Insider - April 18th, 2025 [April 18th, 2025]
- SCOOP: Pence urges Republicans to hold the line on tax hikes for the rich as Trump weighs options - Fox News - April 18th, 2025 [April 18th, 2025]
- Republicans Issue Red Line Warning to Mike Johnson - Newsweek - April 18th, 2025 [April 18th, 2025]
- The Republicans Are Considering Something Truly Shocking: Raising Taxes on the Rich - Slate - April 18th, 2025 [April 18th, 2025]
- American women and children are in crisis. Republicans are about to make it worse | Karen Dolan - The Guardian - April 18th, 2025 [April 18th, 2025]
- Contributor: Americans are sick of federal waste. Republicans should take the hint - Los Angeles Times - April 18th, 2025 [April 18th, 2025]
- Opinion: El Pasos mass shooting is proof of the impact of words. Trump and Republicans dont care - El Paso Matters - April 18th, 2025 [April 18th, 2025]
- Republicans wanted a bombshell report on offshore wind. They got something else. - E&E News by POLITICO - April 18th, 2025 [April 18th, 2025]
- Nicolle Wallace: Republicans are finding you cant make the voters eat the sand - MSNBC News - April 18th, 2025 [April 18th, 2025]
- Congressional Republicans threaten revolt over Trump-led defence shake-up - The Guardian US - March 20th, 2025 [March 20th, 2025]
- Hill Republicans already hated the idiotic call to impeach judges. Then Trump jumped in. - POLITICO - March 20th, 2025 [March 20th, 2025]
- Senate Republicans want to ban ranked-choice voting. It's not used in any Iowa elections - Des Moines Register - March 20th, 2025 [March 20th, 2025]
- Democrats can learn something from the ruthless way Senate Republicans have dealt with Eichorn - Minnesota Reformer - March 20th, 2025 [March 20th, 2025]
- Republicans target New Hampshires child advocate and other small state agencies in budget cuts - New Hampshire Bulletin - March 20th, 2025 [March 20th, 2025]
- Congressional Republicans Cant Cut Medicaid by Hundreds of Billions Without Hurting People - Center on Budget and Policy Priorities - March 20th, 2025 [March 20th, 2025]
- Assembly Republicans pass bill requiring sheriffs to cooperate with ICE - Wisconsin Public Radio News - March 20th, 2025 [March 20th, 2025]
- Trump Derangement Syndrome may not be what these Republicans think it is - Tower Timberjay News - March 20th, 2025 [March 20th, 2025]
- Early Addition: Albany Republicans could have to choose between their lucrative side hustles and elected office - Gothamist - March 20th, 2025 [March 20th, 2025]
- Progressive Judges Hand Republicans Legal Victory on Non-Citizens Voting - Newsweek - March 20th, 2025 [March 20th, 2025]
- Republicans Have Found Another Way to Kickstart a Recession - The New Republic - March 20th, 2025 [March 20th, 2025]
- Washington lawmakers rebuke Republicans' potential cuts to Medicaid - KUOW News and Information - March 20th, 2025 [March 20th, 2025]
- The Republicans Pushing Trump to Save Bidens Clean Energy Tax Credits - The New York Times - March 20th, 2025 [March 20th, 2025]
- Senate Majority Leader Erin Murphy Calls on Senate Republicans to Withdraw Bill that Trivializes Mental Health Care in Minnesota - Minnesota Senate... - March 20th, 2025 [March 20th, 2025]
- Republicans Have the Moral High Ground on Medicaid Reform | Opinion - Newsweek - March 20th, 2025 [March 20th, 2025]
- Minnesota Senate Republicans plan motion to expel Senator accused of trying to solicit minor for sex - KARE11.com - March 20th, 2025 [March 20th, 2025]
- California Republicans revel in their spoiler role - POLITICO - March 20th, 2025 [March 20th, 2025]
- Republicans in Ohio and nationally are waging war on freedom of thought and expression in higher ed - Ohio Capital Journal - March 20th, 2025 [March 20th, 2025]
- Republicans have only 5 weeks to save their House majority - The Hill - March 3rd, 2025 [March 3rd, 2025]
- Trump Has Glossed Over High Prices. Republicans Worry It Will Cost Them. - The Wall Street Journal - March 3rd, 2025 [March 3rd, 2025]
- Trump factor: Two Iowa Republicans respond to whether Donald Trump will endorse them - KTIV Siouxland's News Channel - March 3rd, 2025 [March 3rd, 2025]
- Jeffries accuses Republicans of walking away from government funding talks - The Hill - March 3rd, 2025 [March 3rd, 2025]
- Republicans new Medicaid arguments: Theyre only cutting waste, fraud, and abuse - STAT - March 3rd, 2025 [March 3rd, 2025]
- Republicans should reform Social Security. Do they have the stomach for it? | Opinion - USA TODAY - March 3rd, 2025 [March 3rd, 2025]
- Republicans are too busy telling jokes to care about Americans losing jobs | Opinion - USA TODAY - March 3rd, 2025 [March 3rd, 2025]
- Pennsylvania Republicans who narrowly won their House seats feel the heat of early votes back home - The Associated Press - March 1st, 2025 [March 1st, 2025]
- "It could be trouble": Republicans fear their big budget win is actually a 2026 time bomb - Axios - March 1st, 2025 [March 1st, 2025]
- Opinion | Republicans Need to Learn Government Unions Cant Be Trusted - The Wall Street Journal - March 1st, 2025 [March 1st, 2025]
- How Democrats, Republicans Reacted To Trump-Zelensky Clash - NDTV - March 1st, 2025 [March 1st, 2025]
- Republicans don't care about fixing the economy. Americans need them to start. | Opinion - USA TODAY - March 1st, 2025 [March 1st, 2025]
- Republicans and Elon Musk Are Also Causing a Constitutional Crisis in the States - Mother Jones - March 1st, 2025 [March 1st, 2025]
- Some Republicans fear Medicaid cuts could cost them their jobs - The Washington Post - February 27th, 2025 [February 27th, 2025]
- Opinion | House Republicans are betting big on pain - MSNBC - February 27th, 2025 [February 27th, 2025]
- Senate Republicans voice DOGE concerns in meeting with White House chief of staff - NBC News - February 27th, 2025 [February 27th, 2025]
- House Republicans hit the brakes on town halls after blowback over Trump's cuts - NBC News - February 27th, 2025 [February 27th, 2025]
- In uproar over low test scores, Republicans try to shift blame to DEI, social emotional learning - Maine Morning Star - February 27th, 2025 [February 27th, 2025]
- Budget plan: Long and extremely divisive process ahead for Republicans - The College of Arts & Sciences - February 27th, 2025 [February 27th, 2025]
- Eyeing a friendly Supreme Court, Republicans in Georgia and other states push for the Ten Commandments in schools - WABE 90.1 FM - February 27th, 2025 [February 27th, 2025]
- Congressional Republicans Budget Plans Would Force Americas Working Class To Foot the Bill for Tax Cuts for the Wealthy - Center For American Progress - February 27th, 2025 [February 27th, 2025]
- Republicans Are Now Trapped by Their Own Budget - Newsweek - February 27th, 2025 [February 27th, 2025]
- Majority of Republicans nationally identify as MAGA for first time in Unity Poll - Vanderbilt University News - February 27th, 2025 [February 27th, 2025]
- Republicans Once Wanted Government out of Health Care. Trump Voters See It Differently. - Kaiser Health News - February 27th, 2025 [February 27th, 2025]
- Rep. Fredericks Statement on U.S. House Republicans Budget - Minnesota House of Representatives - February 27th, 2025 [February 27th, 2025]
- Poll: Majority of MD Republicans, independents have considered leaving the state - wmar2news.com - February 27th, 2025 [February 27th, 2025]
- Analysis | Republicans could be touching the third rail on Medicaid - The Washington Post - February 27th, 2025 [February 27th, 2025]
- Republicans press House leadership for help as they face pressure over DOGE cuts at home - CNN - February 27th, 2025 [February 27th, 2025]
- Trumps firing of military brass prompts concern but little pushback from Republicans - The Associated Press - February 27th, 2025 [February 27th, 2025]
- Some Republicans Sharply Criticize Trumps Embrace of Russia at the U.N. - The New York Times - February 27th, 2025 [February 27th, 2025]
- Republicans who got an earful from constituents have message for Trump and DOGE - ABC News - February 27th, 2025 [February 27th, 2025]
- House Republicans Vote to Gut Medicaid for Tax Cuts After Pressure From Trump - Truthout - February 27th, 2025 [February 27th, 2025]
- House Republicans press ahead with budget vote amid revolt - Axios - February 27th, 2025 [February 27th, 2025]
- After heated town halls, Republicans seek more information and compassion from DOGE - NBC News - February 25th, 2025 [February 25th, 2025]
- Stefaniks Confirmation Is on Ice as Republicans Guard Their Scant Majority - The New York Times - February 25th, 2025 [February 25th, 2025]