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
- Its a race for NJ governor, but Republicans want to focus on immigration - POLITICO - February 9th, 2025 [February 9th, 2025]
- Live updates: Musk calls for judge impeachment; Republicans aim to hammer out Trump's budget bill - The Hill - February 9th, 2025 [February 9th, 2025]
- Republicans race to release plans to advance Trump policy agenda in Congress - NPR - February 9th, 2025 [February 9th, 2025]
- Americans, including Republicans, now fear higher inflation this year - CNN - February 9th, 2025 [February 9th, 2025]
- How Republicans won on DEI and wrestled the topic from Democrats - The Independent - February 9th, 2025 [February 9th, 2025]
- Senate Republicans advance bill to ban use of student IDs when voting - WFYI - February 9th, 2025 [February 9th, 2025]
- Republicans in Congress mostly shrug as Musk and DOGE set sights on spending - NPR - February 9th, 2025 [February 9th, 2025]
- Republicans say they are nearing deal on Trump's tax cuts, divided on cost - Reuters - February 9th, 2025 [February 9th, 2025]
- Senate Republicans release budget blueprint ahead of Wednesday markup - POLITICO - February 9th, 2025 [February 9th, 2025]
- Oregon Republicans respond to Trump order on trans athletes by touting state legislation - Oregon Public Broadcasting - February 9th, 2025 [February 9th, 2025]
- With US House stymied, Senate Republicans prepare to move on Trump agenda - Reuters - February 9th, 2025 [February 9th, 2025]
- Georgia Republicans advance bill to make Atlanta let the Fulton County sheriff use its jail - The Associated Press - February 9th, 2025 [February 9th, 2025]
- With House Republicans stuck, Senate pushes ahead with its plan to fund Trump's agenda - ABC News - February 9th, 2025 [February 9th, 2025]
- Republicans insist they could eventually restrain Trump and Musk - Semafor - February 9th, 2025 [February 9th, 2025]
- Andy Ogles and Mike Lee, congressional Republicans, introduce bill to repeal D.C.'s home rule - Washington Times - February 9th, 2025 [February 9th, 2025]
- Trump details his tax agenda in meeting of House Republicans - POLITICO - February 9th, 2025 [February 9th, 2025]
- How the White House convinced skeptical Republicans to back RFK Jr., Gabbard and Hegseth - CNN - February 9th, 2025 [February 9th, 2025]
- LEADER JEFFRIES: HOUSE REPUBLICANS ARE DOING THE BIDDING OF AN UNELECTED, OUT-OF-CONTROL BILLIONAIRE PUPPET MASTER Congressman Hakeem Jeffries -... - February 9th, 2025 [February 9th, 2025]
- OUR VIEW: Find your courage, Republicans. Trump is president, not the 'Wizard of Oz' - Madison.com - February 9th, 2025 [February 9th, 2025]
- Republicans Break With Trump On Proposed Gaza TakeoverHeres What To Know - Forbes - February 9th, 2025 [February 9th, 2025]
- Republicans conflicted on Trumps pitch to own Gaza: I thought we voted for America First - The Guardian US - February 9th, 2025 [February 9th, 2025]
- House Republicans to work through weekend on budget package - Roll Call - February 9th, 2025 [February 9th, 2025]
- Senate Republicans insist Elon Musk isn't in charge after whirlwind actions - ABC News - February 9th, 2025 [February 9th, 2025]
- DeSantis goes to battle with Florida Republicans in trying to get closer to Trump - The Associated Press - February 9th, 2025 [February 9th, 2025]
- Registered Republicans lead Democrats in Nevada for the first time in 20 years - The Associated Press - February 9th, 2025 [February 9th, 2025]
- US House Republicans divided over how to pay for Trump's tax cuts - Reuters - January 26th, 2025 [January 26th, 2025]
- Ramaswamys expected run for Ohio governor would test experienced Republicans and tradition - WTOP - January 26th, 2025 [January 26th, 2025]
- Column | Republicans try to look forward, but Trump forces them back to Jan. 6 - The Washington Post - January 26th, 2025 [January 26th, 2025]
- Ramaswamy's expected run for Ohio governor would test experienced Republicans and tradition - Beaumont Enterprise - January 26th, 2025 [January 26th, 2025]
- Republicans plan slew of reconciliation meetings at their Florida retreat - POLITICO - January 26th, 2025 [January 26th, 2025]
- $124 Billion in Federal Benefits on House Republicans Chopping Block - AFGE - January 26th, 2025 [January 26th, 2025]
- Ballots from Helene-damaged areas are among the 65,000 that Republicans want to throw out in North Carolina - CNN - January 26th, 2025 [January 26th, 2025]
- Article | More Republicans back IRA tax credits in reconciliation fight - POLITICO Pro - January 26th, 2025 [January 26th, 2025]
- Republicans reportedly ready to cut Medicaid funding to pay for Trump plans - The Guardian US - January 26th, 2025 [January 26th, 2025]
- House Republicans Create New Jan. 6 Inquiry to Recast the Assault - The New York Times - January 26th, 2025 [January 26th, 2025]
- Utah Republicans take aim at teachers unions amid political clash over education - The Associated Press - January 26th, 2025 [January 26th, 2025]
- Leading Republicans wrongfooted by Trumps sweeping January 6 pardons - The Guardian US - January 26th, 2025 [January 26th, 2025]
- Opinion | What It Means That Republicans Arent Acting on the Pete Hegseth Allegations - The New York Times - January 26th, 2025 [January 26th, 2025]
- How Republicans Will Try to Pay for Trumps Agenda, and a New A.D.H.D. Study - The New York Times - January 26th, 2025 [January 26th, 2025]
- Ramaswamy's expected run for Ohio governor would test experienced Republicans and tradition - WV News - January 26th, 2025 [January 26th, 2025]
- On pardons and January 6, Republicans torn between moving forward and looking back - CNN - January 26th, 2025 [January 26th, 2025]
- Missouri Republicans are trying to overturn Kansas Citys ban on housing discrimination - KCUR - January 26th, 2025 [January 26th, 2025]
- Ramaswamy's expected run for Ohio governor would test experienced Republicans and tradition - Yahoo News Canada - January 26th, 2025 [January 26th, 2025]
- Trump to meet with Republicans key to tax negotiations and other GOP priorities - POLITICO - January 26th, 2025 [January 26th, 2025]
- Republicans Say This Anti-Immigrant Bill Will Protect Victims of Abuse. It Will Do the Opposite. - The Intercept - January 26th, 2025 [January 26th, 2025]
- At Trumps second inaugural, a changed Washington and a full embrace from Republicans - The Associated Press - January 26th, 2025 [January 26th, 2025]
- To gain a court seat, Republicans seek to throw out thousands of votes - The Washington Post - January 26th, 2025 [January 26th, 2025]
- Another Round of Redistricting in Ohio Could Help House Republicans - The Cook Political Report - January 26th, 2025 [January 26th, 2025]
- Republicans Press To Change TRUST Act To Align With Trumps Agenda - CT News Junkie - January 26th, 2025 [January 26th, 2025]
- Whats the Secret to Trumps Success? Its the Republicans, Stupid. - WhoWhatWhy - January 26th, 2025 [January 26th, 2025]
- Chip Roy leads House Republicans in effort to repeal law used by Biden administration to prosecute pro-lifers - Fox News - January 22nd, 2025 [January 22nd, 2025]
- With the full embrace of Republicans, Trump returns to a changed Washington - PBS NewsHour - January 22nd, 2025 [January 22nd, 2025]
- Pa. row officers are sworn in and all 3 are Republicans - timesobserver.com - January 22nd, 2025 [January 22nd, 2025]
- Full List of Republicans Breaking With Trump on January 6 Pardons - Newsweek - January 22nd, 2025 [January 22nd, 2025]
- Pennsylvania row officers to be sworn in, marking first time Republicans hold all three offices - Pittsburgh Post-Gazette - January 22nd, 2025 [January 22nd, 2025]
- Not All Republicans Are Happy With Donald Trump's Executive Orders - Newsweek - January 22nd, 2025 [January 22nd, 2025]
- Pardoned Biden Family Members Were Targets of Republicans - The New York Times - January 22nd, 2025 [January 22nd, 2025]
- Targeting Vulnerable Republicans, Campaign Demands 'Hands Off Medicaid' in Spending Cut Talks - Common Dreams - January 22nd, 2025 [January 22nd, 2025]
- I covered Rep. Turner for years. Here's why fellow Republicans booted him. | Opinion - The Columbus Dispatch - January 22nd, 2025 [January 22nd, 2025]
- Republicans in Congress warn rising US bond yields could hit Trump's tax cut plans - Reuters - January 22nd, 2025 [January 22nd, 2025]
- House Oversight Republicans open Congress with rants against telework, unions - Government Executive - January 22nd, 2025 [January 22nd, 2025]
- For Republicans interested in universal EFAs, budget and governor may be obstacle - New Hampshire Bulletin - January 22nd, 2025 [January 22nd, 2025]
- Vivek Ramaswamy's interest in running for Ohio governor isn't scaring away other Republicans - NBC News - January 22nd, 2025 [January 22nd, 2025]
- Chip Roy leads House Republicans in effort to repeal law used by Biden administration to prosecute pro-lifers - Yahoo! Voices - January 22nd, 2025 [January 22nd, 2025]
- Opinion | Republicans insist that Trump is hugely popular. His approval ratings say otherwise. - Yahoo! Voices - January 22nd, 2025 [January 22nd, 2025]
- The Super Bowl of politics: Suburban Republicans in Washington for Trumps inauguration - Daily Herald - January 22nd, 2025 [January 22nd, 2025]
- Republicans Take Control of Congress and Harris Certifies Her Own Loss - The New York Times - January 7th, 2025 [January 7th, 2025]
- Immigration bill first up for House Republicans - POLITICO - January 7th, 2025 [January 7th, 2025]
- Topper Leads House Republicans in Taking the Oath of Office - Pennsylvania House Republican Caucus - January 7th, 2025 [January 7th, 2025]
- House Republicans plan to act as majority, DFL threatens Opening Day absence in power sharing tug-of-war - Minnesota House of Representatives - January 7th, 2025 [January 7th, 2025]
- Republicans divided over agenda as Trump calls for action - Reuters - January 7th, 2025 [January 7th, 2025]
- Trump Calls SALT-Focused Republicans to Florida Before Tax Fight - Bloomberg - January 7th, 2025 [January 7th, 2025]
- Republicans take over Washington amid a worldwide anti-incumbent wave: From the Politics Desk - NBC News - January 7th, 2025 [January 7th, 2025]
- Republicans trust in accuracy of US elections jumps after Trumps win, AP-NORC poll finds - The Associated Press - January 7th, 2025 [January 7th, 2025]
- House Republicans Pledge Drilling and Make It Easier to Shed Federal Land - The New York Times - January 7th, 2025 [January 7th, 2025]
- Republicans grapple with Trumps position on package for tax cuts and spending - Washington Times - January 7th, 2025 [January 7th, 2025]
- Senate Republicans Move to get Voter ID to Wisconsin Voters in April - MacIverInstitute - January 7th, 2025 [January 7th, 2025]
- Republicans loved crypto before Trump jumped on the bandwagon. Here's why. - USA TODAY - January 7th, 2025 [January 7th, 2025]
- Republicans begin rolling out public safety and immigration bills ahead of session - Daily Herald - January 7th, 2025 [January 7th, 2025]
- Republicans are working to get the country 'back on track,' says Rep. Byron Donalds - Fox Business - January 7th, 2025 [January 7th, 2025]