Now Reading
Gov. Pritzker today ordered residents to remain in their homes until …

Gov. Pritzker today ordered residents to remain in their homes until …

Gov. Pritzker today ordered residents to remain in their homes until April 7. Here’s what you need to know.

Return to homepage ×


Please subscribe to keep reading. You can cancel at any time.

‘);
$(‘.lee-featured-subscription’).html(sFallBack);
}

function lee_formatPackage(oService){
try {
var bOnlyModal = true;
var oSettings = lee_getPackageSettings(oService.HomeMembership);
var newService = {};
if(parseInt(oService.WebFeatureFG) === 2) return false;
if(oService.WebStartPrice != ”){
var custom = JSON.parse(oService.WebStartPrice);
$.each(custom, function(k,v){
newService[k] = v;
});
}
if(bOnlyModal && newService.in_modal && newService.in_modal.toLowerCase() === ‘false’) return false;
if(!bOnlyModal && newService.not_members && newService.not_members.toLowerCase() === ‘true’) return false;

newService.has_featured_class = newService.featured ? ‘featured-package’ : ”;
newService.sort = parseInt((newService.sort) ? newService.sort : oSettings.sort);
newService.title = (newService.package_title && newService.package_title != ”) ? newService.package_title : oSettings.title;
newService.level = oService.HomeMembership;
newService.html = oService.WebOfferHTML;
newService.disabled = newService.disable_purchase ? ‘disabled’ : ”;

var price = lee_formatPackagePrice(newService.start_price);
newService.start_price = price.cost;
newService.format_dollars = (price.format_dollars) ? price.format_dollars : ”;
newService.format_cents = (price.format_cents) ? price.format_cents : ”;
newService.start_at_rate = (newService.fixed_rate === ‘true’) ? ‘for the low price of’ : ‘starting at’;

if( !newService.term ) newService.term = ‘per month’;

newService.has_promotion_class = ”;
if( newService.promotional_price && newService.promotional_price != ” ){
newService.has_promotion_class = ‘has-promotion’;
var promotion = lee_formatPackagePrice(newService.promotional_price);
newService.promotional_price = promotion.cost;
newService.promotional_format_dollars = (promotion.format_dollars) ? promotion.format_dollars : ”;
newService.promotional_format_cents = (promotion.format_cents) ? promotion.format_cents : ”;
}

newService.special_title_class = newService.special_title ? ‘has-special-title’ : ”;
newService.special_label_class = newService.label ? ‘has-label’ : ”;

newService.action_button = ‘Sign Up’;
if(newService.disabled === ‘disabled’){
newService.start_at_rate = ‘Call us at’;
newService.start_price = ‘800-453-2472’;
newService.term = ‘to get started’;
newService.action_button = ‘Call Today’;
}

window.lee_service_impressions.push({
‘id’: newService.level,
‘name’: newService.title,
‘price’: newService.start_price,
‘brand’: “herald-review.com”,
‘category’: ‘subscription’,
‘list’: ‘Block’,
‘position’: newService.sort
});

return newService;

} catch(e){
if(window.console) console.warn(e);
return false;
}
}

function lee_sortPackages(property) {
var sortOrder = 1;
if(property[0] === “-“) {
sortOrder = -1;
property = property.substr(1);
}
return function (a,b) {
var result = (a[property] b[property]) ? 1 : 0;
return result * sortOrder;
}
}

function lee_getPackageSettings(sPackage){
switch(sPackage.toLowerCase()){
case ‘dob’:
return {title: ‘Digital Basic’, sort: 0};
break;
case ‘dop’:
return {title: ‘Digital Plus’, sort: 1};
break;
case ‘dopl’:
return {title: ‘Digital Platinum’, sort: 2};
break;
case ‘silv’:
return {title: ‘Silver’, sort: 3};
break;
case ‘gold’:
return {title: ‘Gold’, sort: 4};
break;
case ‘plat’:
return {title: ‘Platinum’, sort: 5};
break;
}
}

function lee_replacePackageTokens(sPackage, oService, sCol){
var hasPromotion = false;
$.each(oService, function(k,v){
if( k === ‘html’){
v = v.replace(new RegExp(‘{{domain}}’, ‘gi’), ‘herald-review.com’)
.replace(new RegExp(‘{{site_name}}’, ‘gi’), ‘Herald-Review.com’)
.replace(new RegExp(‘{{business_name}}’, ‘gi’), ‘Herald & Review’)
.replace(new RegExp(‘{{site_phone}}’, ‘gi’), ‘800-453-2472’);
}
sPackage = sPackage.replace(new RegExp(‘{{‘+k+’}}’, ‘gi’), v);
});
if(sCol) sPackage = sPackage.replace(‘{{col}}’, sCol);
return sPackage;
}

try {
var oPackages = [],
oFeatured = false,
sHtml = ”,
sTemplate = $(‘#lee-service-template’).html();

$.each(window.leeMembershipPackages, function(i, oService){
var oService = lee_formatPackage(oService);
if(oService){
oPackages.push(oService);
if(oService.featured === ‘true’) oFeatured = oService;
}
});

if(oPackages.length === 0){ throw ‘No packages defined’; }

oPackages.sort(lee_sortPackages(‘sort’));

if(!oFeatured) oFeatured = oPackages[0];

if(oPackages.length === 1){
sTemplate = $(‘#lee-service-template-single’).html();
$(‘#lee-services-list’).addClass(‘single’);
} else {
$(‘#lee-services-list’).addClass(‘multiple’);
}

switch(oPackages.length){
case 6: var sCol = ‘2’; break;
case 5: var sCol = ‘5ths’; break;
case 4: var sCol = ‘3’; break;
case 3: var sCol = ‘4’; break;
case 2: var sCol = ‘6’; break;
default: var sCol = ’12’; break;
}

$(‘#lee-services-modal’).addClass(‘packages_’+oPackages.length);

$.each(oPackages, function(i, oService){
sHtml += lee_replacePackageTokens(sTemplate, oService, sCol);
});

$(‘#lee-services-list .packages’).html(sHtml).promise().then(function(){
$(‘#lee-services-list .loading’).hide();
$(‘#lee-services-list .packages’).css(‘opacity’, 1);
});

if(!__tnt.user.services){
if( $(‘.lee-featured-subscription’).length > 0 && oFeatured ){
$(‘.lee-featured-subscription’).each(function(){
var html = $(this).html();
if( !oFeatured.featured_button_text ){
if(oFeatured.promotional_price){
oFeatured.featured_button_text = oFeatured.promotional_format_dollars+oFeatured.promotional_price+oFeatured.promotional_format_cents+’ ‘+oFeatured.term;
} else {
oFeatured.featured_button_text = ‘Join for ‘+oFeatured.format_dollars+oFeatured.start_price+oFeatured.format_cents+’ ‘+oFeatured.term;
}
}
html = lee_replacePackageTokens(html, oFeatured);
$(this).html(html);
if(oFeatured.promotional_price) $(this).addClass(‘has-promotiom’);
if( $(this).hasClass(‘show-after-loaded’) ) $(this).show();
});
}
}

} catch (e) {
if(window.console) console.warn(e);
lee_serviceError();
}

window.lee_fetched_services = true;
});

×

Sign Up Today and Support Local Journalism

Enjoy more articles from Central Illinois’ Most Trusted Information Source. Subscribers can log in for unlimited digital access

CHICAGO — Gov. J.B. Pritzker on Friday ordered all state residents to remain in their homes except for essentials, joining similar dramatic efforts in California and New York to limit the spread of the coronavirus.

Pritzker’s order, which takes effect Saturday at 5 p.m. and is set to expire April 7, still allows the state’s 12.6 million residents to head outside to buy groceries and medicine.

See Also

“If there are actions that I can take that will save lives in the midst of this pandemic, no matter how difficult, then I have an obligation,” Pritzker said. The Democrat said he was trying to prevent “potentially tens of thousands” of deaths but urged people not to panic.

“For the vast majority of you already taking precautions, your lives will not change very much,” he said, adding that people can continue to shop for groceries and visit pharmacies, gas stations and banks. Residents also can continue to pick up meals from restaurants and exercise outdoors, he said.

Pritzker acknowledged that the state doesn’t have the resources or “the desire” to broadly enforce the order, but he said law enforcement will take action if necessary in individual cases. The order exempts people who work in many essential industries, including health care, manufacturing, transportation and food production or sales, including at grocery stores and restaurants.

The stay-at-home order will also mean schools statewide remain closed until April 8, he said.

“We have looked closely at the trajectory of this virus in countries like Italy and China. Left unchecked, cases in Illinois will rise rapidly,” Pritzker said. “Hospital systems will be overwhelmed. Protective equipment will become scarce, and we will not have enough health care workers or hospital beds or ventilators for the overwhelming influx of sick patients.”

State and local law enforcement officials will have authority to enforce the order. In most cases, Pritzker said, that would involve officers telling people to disburse and go back home. If they don’t, he said, they could be cited for disorderly conduct or other municipal offenses.

Pritzker had previously ordered all schools statewide to shut down through the end of March and limited gatherings to 50 people to curb the spread of the coronavirus in the state. He also closed dine-in service at bars and restaurants, but allowed businesses to continue delivery or carryout options.

The governors of California and New York have issued similar orders.

Chicago Mayor Lori Lightfoot, who stood by Pritzker’s side as he announced the order, said she agreed with the decision.

“Think of this as safer at home,” she said.

Dr. Emily Landon, lead epidemiologist at University of Chicago Medicine, described the measures as necessary and indicated they might have to remain in place beyond April 7.

“In short, without taking drastic measures, the healthy and optimistic among us will doom the vulnerable,” she said. “We have to fight this fire before it grows too high.”

For most people, the coronavirus causes only mild or moderate symptoms, such as fever and cough. For some, especially older adults and people with existing health problems, it can cause more severe illness, including pneumonia.



Pritzker 'stay at home' order: What it includes, when it starts

Gov. J.B. Pritzker on Friday ordered that Illinois residents remain in homes except for essentials. Here’s what we know so far. 

The vast majority of people recover from the virus. According to the World Health Organization, people with mild cases recover in about two weeks, while those with more severe ones can take three to six weeks to get better.

As of Friday afternoon, Illinois has reported 585 cases of COVID-19 in 25 counties, up from 422 a day earlier. The state reported one more death Friday — a woman in her 70s from Cook County — taking the state’s toll to five.

Capitol News Illinois contributed to this report.

Sign up now to get the most recent coronavirus headlines and other important local and national news sent to your email inbox daily.

What's Your Reaction?
Excited
0
Happy
0
In Love
0
Not Sure
0
Silly
0
Scroll To Top