Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (2024)

');}else {$('.followThisTopic').text("Add To Favorites");alert("Something is wrong with the network. Try again.");}},'json');}// stop following topic buttonif ($(target).hasClass('followingTopic')) {e.preventDefault();$('.followingTopic').text('...sending');var topic = $('.topicHeading').data("topic");var options = {"stopFollowingTopic":1, "topicId": topic};$.post('/truckers-forum/includes/php/setUserPreferences.php', options, function(data) {if (data.status == "success") {$('.followingTopic').replaceWith('

Add To Favorites

');}else {$('.followThisTopic').text("Add To Favorites");alert("Something is wrong with the network. Try again.");}},'json');}// show tag list buttonif ($(target).hasClass('showTagList')) {$('.newTopicWrapper').hide();$('.tagListWrapper').fadeIn();}});$('.editorButtonDiv').on('click', function(e) {var closestDiv = $(e.target).closest('div');if ($(closestDiv).is('.tableFormatButton')) {var textAreaBox = $('.textAreaBox');var commandBefore = ($(e.target).closest('.tableButton').data('commandbefore'));var commandAfter = ($(e.target).closest('.tableButton').data('commandafter'));var selectionStart = $(textAreaBox).getSelection().start;var selectionEnd = $(textAreaBox).getSelection().end;if ($(textAreaBox).getSelection().length == 0) {$(textAreaBox).focus();var textToInsert = commandBefore + '' + commandAfter;$(textAreaBox).insertText(textToInsert, selectionStart);if (commandBefore == "

") {$(textAreaBox).setCursorPosition(selectionStart + 12);}else if (commandBefore == "") {$(textAreaBox).setCursorPosition(selectionStart + 8);}else {$(textAreaBox).setCursorPosition(selectionStart + 3);}}else {$(textAreaBox).focus();$(textAreaBox).surroundSelectedText(commandBefore, commandAfter);}}if ($(closestDiv).is('.tableLinkButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableLinkButton').addClass('tableButtonPressed');$('.linkForm').fadeIn();}if ($(closestDiv).is('.tableImageButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableImageButton').addClass('tableButtonPressed');$('.imageForm').fadeIn();}if ($(closestDiv).is('.tableLinkTTButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableLinkTTButton').addClass('tableButtonPressed');$('.linkOnTTForm').fadeIn();}if ($(closestDiv).is('.tableSmileyButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableSmileyButton').addClass('tableButtonPressed');$('.smileyForm').fadeIn();}});$('.formatFormCancel').on('click', function() {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();});$('.previewButton').on('click', function(e) {e.preventDefault();$('.previewButton').html('...Creating Preview')var comment = $('.textAreaBox').val();var dataToSend = {"comment": comment, "createPreview":1};$.post('/truckers-forum/includes/php/admin.php', dataToSend, function(data) {$('html, body').animate({'scrollTop':'+=300'}, 600);$('.previewButton').html('Preview');$('.previewDivInner').html(data.comment);$('.previewDiv').fadeIn();},'json');});$('.previewCancel').on('click', function(e) {e.preventDefault();$('.previewDivInner').html('');$('.previewDiv').fadeOut();});$('.previewReply').on('click', function(e) {e.preventDefault();$('.previewDivInner').html('');$('.previewDiv').fadeOut();$('.replyButton').trigger('click');});$('.replyButton').on('click', function(e) {e.preventDefault();if ($('.textAreaBox').val().length > 5500) {alert('Your post is too long. Please reduce the size to below 5,500 characters. The count is shown below the window you\'re typing into.');}else {$('.replyButton').html('Sending...');var topicBody = $('.textAreaBox').val();var categoryID = $('.categoryHeading').data('category');var topic = $('.topicHeading').data('topic');if ($('.subscribeButton').hasClass('subscribedToTopic')) {var subscribed = "yes";}else {var subscribed = "no";}var dataArray = {'categoryID': categoryID, 'comment': topicBody, 'topic': topic, 'subscribed': subscribed};$.post('/truckers-forum/includes/php/insertNewComment.php', dataArray, function(data) {var dataReturned = $.parseJSON(data);if (dataReturned.status == "success") {$('.replyButton').html('Success! Reloading page...');location.reload(true);}// if they posted too recentlyelse if (dataReturned.status == "timeLimit") {alert('Sorry, you can only post a new comment every two minutes. Please wait a short time and hit Submit again.');}else if (dataReturned.status == "moderation") {alert('Your comment is awaiting moderation. We will send you an email if it is approved. Hopefully it will only be a few minutes but it could be a few hours so we appreciate your patience. We\'re doing all we can to keep this a friendly and helpful community for everyone. Thanks!');location.reload(true);}else if (dataReturned.status == "commentLimit") {alert('Sorry, you have too many comments in moderation right now. Please be patient while we get caught up and submit this again in a little while. Thanks.')}else if (dataReturned.status == "banned") {alert('Sorry, you have been banned from posting in our forum.');}else {alert('There was an error of some sort. Please hit the "Submit" button again. If this error continues, contact brett@truckingtruth.com and we\'ll get it straightened out. Thanks.');}});}});$('.tagListUL').on('click', function(e) {e.preventDefault();var $target = $(e.target);if ($target.hasClass('btn')) {$target.toggleClass('tagged');}});$('.submitTagsButton').on("click", function(e) {e.preventDefault();$('.submitTagsButton').html('...sending');var taggedElements = $('.tagListUL').find('.tagged');var tagArray = [];for (i=0; i\n\n'; var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(insertedHtml, selectionStart, true);$('.imageForm').fadeOut();$('.tableImageButton').removeClass('tableButtonPressed');$('.urlForImage').val('');}img.src = imageUrl;}$('.submitImageButton').on('click', function() {var imageUrl = $('.urlForImage').val();validateImageUrl(imageUrl); });function validateLink(link) {return fetch(link, { method: 'HEAD' }).then(response => {return (response.status === 200 || response.status === 301 || response.status === 302);}).catch(error => {console.log('Error:', error);return false;});}$('.submitLinkButton').on('click', function(e) {e.preventDefault();var textForLink = $('.textForLink').val();if (textForLink.length < 4) {alert('Please put a description for the page you\'re linking to in the "Link Text" field.');}else {var linkUrl = $('.urlForLink').val();var linkHtml = '' + textForLink + '';var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(linkHtml, selectionStart, true);$('.linkForm').fadeOut();$('.tableLinkButton').removeClass('tableButtonPressed');$('.textForLink').val('');$('.urlForLink').val('');}});$('.ttLinkButton').on('click', function(e) {e.preventDefault();var link = parseInt($(this).data('link'));// we have to subtract 1 from link to get the proper array indexvar linkHtml = ttLinkButtonArray[link - 1];// var linkText = $(this).html();// var linkHtml = '' + linkText + ''; var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(linkHtml, selectionStart, true);});$('.smileyForm').on('click', function(e) {e.preventDefault();if ($(e.target).data('name') == "cancel") {return;}var imageName = $(e.target).closest('img').data('name');if (imageName !== 'cancel') {var imageHtml = 'Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (1) ';var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(imageHtml, selectionStart, true);}});$('.quoteButton').on('click', function(e) {e.preventDefault();$('.newTopicWrapper').show();var comment = $(this).parents('.commentWrapper').find('.commentText');var commentor = $(this).parents('.commentWrapper').find('.nickname').html();$('html, body').animate({scrollTop: ($('.newTopicWrapper').offset().top)}, 500);// gotta get the glossary .definitionTerm spans and .tooltipElements out of the quote$(comment).find('.tooltipElements').remove();$(comment).find('.definitionTerm').each(function(i,v) {$(this).replaceWith($(this).text().trim());});$(comment).find('.viewMoreQuoteButton').remove();// $(comment).find('span[itemprop="text"]').unwrap();// $(comment).trim();var commentWrapped = "
" + $(comment).html().trim() + "
\n\n";var uidOfSender = $('.uidDiv').data('uid');// we have to get the current content of the textarea then append this quotevar currentTextAreaVal = $('.textAreaBox').val();var newTextAreaVal = currentTextAreaVal + "\n\n\n\n" + commentWrapped;// $('.textAreaBox').val(commentWrapped);$('.textAreaBox').val(newTextAreaVal);textAreaCheck(0, 1);});// this is the report button$('.reportButton').on("click", function(e) {e.preventDefault();$thisButton = $(this);if (confirm("Just confirming that you would like to report this comment?")) {$thisButton.text("..sending");var $commentWrapper = $(this).parents('.commentWrapper');var commentId = $commentWrapper.data('commentid');var commentText = $commentWrapper.find('.commentText').html();var nickname = $commentWrapper.find('.nickname a').text();var topicID = $('.topicHeading').data('topic');var topicHeading = $('.topicHeading').text();var page = $('.topicHeading').data('page');var uidOfSender = $('.uidDiv').data('uid');var options = {"reportComment":"1", "topic":topicID, "nickname":nickname, "commentText":commentText, "commentId":commentId, "uidOfSender":uidOfSender, "topicHeading":topicHeading, "page":page};$.post('/truckers-forum/includes/php/setUserPreferences.php', options, function(data) {$thisButton.text('Report');if (data.status == "success") {alert("Thanks! We've received your report about this comment and you can be certain we'll be taking a close look at it. We appreciate the help!");}else {alert("hmmmm....that didn't go through for some reason. Try hitting the 'report' button one more time. Thanks.");}},'json');}});$('.subscribeButton').on('click', function(e) {e.preventDefault();$(this).toggleClass('subscribedToTopic');});$('.goToPageSubmit').on('click', function(e) {e.preventDefault();var topic = $('.topicHeading').data('topic');var page = $(this).parents('.topicPaginationWrapper').find('.goToPage').val();var subjectString = $('.topicHeading').data('subjectstring');var locationString = "https://www.truckingtruth.com/truckers-forum/Topic-" + topic + "/";locationString += "Page-" + page + "/" + subjectString;location.href=locationString;});// this looks for the first blockquote in each commentTextWrapper and shortens it if it's really long$.each($('.commentWrapper'), function(i,comment) {// console.log($(this));var $quote = $(this).find('blockquote:first');// console.log($quote);// if the quote is taller than 450 pxif ($quote.height() > 450) {// create the "View More" buttonvar a = $("").addClass('btn btnDarkBlueArrowDown viewMoreQuoteButton').attr('data-id', i).html('View More');// add the heightReduced class to the quote$quote.addClass('heightReduced');// append the View More button and clearTall$(a).insertAfter($quote);$('').insertAfter($(a));}});// this will expand the blockquote which we shortened with the previous .each function$('.viewMoreQuoteButton').on("click", function(e) {e.preventDefault();// find the blockquotevar $blockquote = $(this).parents('.commentText').find('blockquote:eq(0)')// if the height is currently reducedif ($blockquote.hasClass('heightReduced')) {// remove the height restrictino$blockquote.removeClass('heightReduced');// convert the arrow down to an arrow up$(this).html("View Less").removeClass('btnDarkBlueArrowDown').addClass('btnDarkBlueArrowUp');// scroll to the top of the blockquote$('html, body').animate({scrollTop: ($($blockquote).offset().top - 20)}, 500);}// if it's currently at full heightelse {// add heightReduced to reduce the height$blockquote.addClass('heightReduced');// convert the button to arrow down$(this).html("View More").removeClass('btnDarkBlueArrowUp').addClass('btnDarkBlueArrowDown');// scroll back to the top of the quote$('html, body').animate({scrollTop: ($($blockquote).offset().top - 20)}, 500);}});// if there are new comments this will scroll the page to themif ($('.topicHeading').data('pagename') == "Newest" && $('.newTopic').length) {$('html, body').animate({scrollTop: ($('.newTopic:eq(0)').offset().top - 20)}, 500);}// this creates a searchable list out of the tags with List.js (/includes/js/List.js)// and the fuzzysearch plugin (/includes/js/fuzzysearch.js)var listOptions = { valueNames: [ 'sorted' ], listClass: 'tagListUL', page: 500, plugins:[ListFuzzySearch()]};var tagList = new List('tagListInnerDiv', listOptions);// this is for the page button// make an array of elements that should be included in page menuvar inclusionArray = ["h1","h2","h3",".commentInfo",".nextPageButton",".prevPageButton",".startNewTopic",".returnButtons"];// make an array of elements that should not be included in page menuvar exclusionArray = [".mobileShortcutDiv",".tooltipElements",".previewDiv",".jumpDiv",".newTopicWrapper",".tagListWrapper"];// createPageMenuButton(inclusionArray,exclusionArray);// this is for submitting ratings and tags for each conversation$('.ratingSubmitButton').on('click', function(e) {e.preventDefault();$(this).html('...sending');var rating = $('.ratingSelect').val();var topic = $('.topicHeading').data('topic');$.post('/truckers-forum/includes/php/updateTags.php', {"rating":rating, "topic_id": topic}, function(data) {$('.ratingSubmitButton').html('Success!');setTimeout(function() {$('.ratingSubmitButton').html("Submit");}, 600);});});});

Topic 27975 | Page 1

  • Trucker's Forum
  • Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (2)
  • General Category
  • Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (3)
  • Truckers report in on their treatment during these COVID-19 times

Page 1 of 1

DaveW's Comment

Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (4)

DaveW

Home State: AZ

Experienced Driver

Posts: 418

Joined Us:

11 years, 3 months ago

4 years, 2 months ago

At a time when the public's awareness of the importance of the trucking industry in general, and truck drivers in particular, is at an all-time high because of the COVID-19 virus crisis, at least one industry leader has found an irony in the situation.

Truckers report in on their treatment during these COVID-19 times

Shipper:

The customer who is shipping the freight. This is where the driver will pick up a load and then deliver it to the receiver or consignee.

PJ's Comment

Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (5)

PJ

Moderator

Elberton, GA

Experienced Driver

Posts: 3238

Joined Us:

10 years, 8 months ago

75 Photos

4 years, 2 months ago

Sounds similiar to what I am running into. We have 1 shipper I go to an average of twice a week having us fill out a health questionare about medical and travel. I have to fill it out everytime I enter the plant. It gets old, but it is what it is. There is one driver all he does is load trailers out of there. He averages 3-4 a day and he told me he has to complete one each trip in. Some customers have brought in porta potties. I guess they feel that is better than us actually washing our hands inside their building.

I went to a customer in tx and had issues with loading paperwork. I made 6 trips back and forth to the security window and all 6 times the same guy took my temp.

Seems some common sense could do as much good as washing your handsTruckers Report In On Their Treatment During These COVID-19 Times - Page 1 (6)

Shipper:

The customer who is shipping the freight. This is where the driver will pick up a load and then deliver it to the receiver or consignee.

TWIC:

Transportation Worker Identification Credential

Truck drivers who regularly pick up from or deliver to the shipping ports will often be required to carry a TWIC card.

Your TWIC is a tamper-resistant biometric card which acts as both your identification in secure areas, as well as an indicator of you having passed the necessary security clearance. TWIC cards are valid for five years. The issuance of TWIC cards is overseen by the Transportation Security Administration and the Department of Homeland Security.

Susan D. 's Comment

Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (7)

Susan D.

Moderator

Central (I-65 corridor), KY

Experienced Driver

Posts: 3061

Joined Us:

8 years, 10 months ago

63 Photos

4 years, 2 months ago

I've been scanned (temperature check), questioned, and not allowed out of my truck even lol.

One place in particular, in West Monroe, LA wouldn't even let any driver on their plant property. They had us pull into a dirt lot across the street, phone in our pickup information, then these 2 guys in hazmat suits, goggles, gloves, and N95 masks would come inspect your trailer, unhook it and drop the landing gear so you could pull out from under it, then a waiting yard driver would hook your empty and take it into the plant across the street to get it loaded and bring it back and drop it. They had the paperwork and seal in the back and you'd hook it, get your paperwork and go. Just crazy.

Today at Addyston, OH, I was slipped a disposable strip thermometer through a slot, told to hold it to my forehead. Then the older security guard said "I can't read that thing through this really thick glass, course I'm old and can't see **** anyway.. what's it say?" I pulled it off my forehead and nothing. A woman was walking into the building and I asked if she could read it. She says no, her sunglasses are too dark. I tell her it must be too difficult to lift them up and see what this thermometer says, and she does. Problem is, it's cold and windy and isn't registering squat lol. So the security guard asks me how I'm feeling. I tell him I'm fine and he says "ok" then opens the gate so I can go get my load.

OMG the people with gloves and masks are a trip. Had a guy literally acting like he was terrified to walk by to leave as I was placing my order at a Hardees. He asked ME to move so he could walk behind me. I just told him to walk.. it's not that difficult. As he passed, I couldn't help but say "boo!" I think the guy nearly wet himself.

Simple handwashing.. keep your hands off your face. Dont cough all over people. This isn't rocket science and people are so, dare I say it... incredibly stupid. Some act like it's the apocalypse, and at other places, its business as usual.

HAZMAT:

Hazardous Materials

Explosive, flammable, poisonous or otherwise potentially dangerous cargo. Large amounts of especially hazardous cargo are required to be placarded under HAZMAT regulations

Brett Aquila's Comment

Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (8)

Brett Aquila

Moderator

Keeseville, NY

Experienced Driver

Posts: 13357

Joined Us:

17 years, 4 months ago

138 Photos

4 years, 2 months ago

Some act like it's the apocalypse, and at other places, its business as usual.

Unfortunately, most people just take what they hear from politicians and the news media at face value, because you know, politicians and the media are super trustworthy, right?

Good grief!

It's pretty obvious to anyone who has really looked into this that it was never anything more than the ordinary flu. It's terrifying how they've crushed our lives and terrified everyone for no reason.

I'll be talking quite a bit more about this very soon on our regular conversation about coronavirus.

Don's Comment

Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (9)

Don

Wooster, OH

Experienced Driver

Posts: 871

Joined Us:

6 years, 4 months ago

29 Photos

4 years, 2 months ago

I have not experienced too many issues related to the pandemic. Sure, I have to fill out questionnaires at a couple of consignees or shippers; receivers only allowing one driver at a time in a small space; kept distances from others (hell, I've kept my distance from strangers while out in public for years!). Using common sense will get us through this. Unfortunately, it isn't my using common sense that is an issue. You are always going to have those morons who cough while walking by you, insist on getting up in my grill like they want to kiss me or something, or doing stupid stuff just to prove some point of "I ain't scared of no virus."

Consignee:

The customer the freight is being delivered to. Also referred to as "the receiver". The shipper is the customer that is shipping the goods, the consignee is the customer receiving the goods.

Shipper:

The customer who is shipping the freight. This is where the driver will pick up a load and then deliver it to the receiver or consignee.

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

OWI:

Operating While Intoxicated

Junkyard Dog's Comment

Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (10)

Junkyard Dog

Home State: IA

Experienced Driver

Posts: 613

Joined Us:

7 years, 2 months ago

24 Photos

4 years, 2 months ago

Fill out a questionnaire in every place I go, Temperature scanned, And most places I don't need sign the paperwork... They do it for me or leave a paperwork in the back of the trailer with the seal. Biggest thing I worry about is taking a shower. Fans are blowing its Humid in there... So I take them When I can do it very early in the morning... I'm usually customer number 1 or 2. I want to pick up a can of lysol spray so I can spray the shower air when I walk in just haven't been able to find it the places I go.

OWI:

Operating While Intoxicated

Page 1 of 1

Return To General CategoryTrucker's Forum Homepage

New Reply:

New! Check out our help videos for a better understanding of our forum features

Bold

Italic

Underline

Quote

Photo

Link

Smiley

Links On TruckingTruth

Done

Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (11)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (12)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (13)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (14)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (15)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (16)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (17)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (18)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (19)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (20)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (21)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (22)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (23)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (24)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (25)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (26)Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (27)

Done


0 characters so far - 5,500 maximum allowed.

Notify Me Of New CommentsSubmitPreview

Preview:

Submit

Cancel

Truckers Report In On Their Treatment During These COVID-19 Times - Page 1 (2024)

References

Top Articles
Latest Posts
Article information

Author: Kieth Sipes

Last Updated:

Views: 5869

Rating: 4.7 / 5 (47 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Kieth Sipes

Birthday: 2001-04-14

Address: Suite 492 62479 Champlin Loop, South Catrice, MS 57271

Phone: +9663362133320

Job: District Sales Analyst

Hobby: Digital arts, Dance, Ghost hunting, Worldbuilding, Kayaking, Table tennis, 3D printing

Introduction: My name is Kieth Sipes, I am a zany, rich, courageous, powerful, faithful, jolly, excited person who loves writing and wants to share my knowledge and understanding with you.