Researchers find Coffee can help fight gum disease

Researchers find Coffee can help fight gum disease

Coffee has antioxidants and antioxidants help fight gum disease, so does coffee help fight gum disease? That’s the question researchers from Boston University’s Henry M. Goldman School of Dental Medicine wanted to answer when they conducted their study on the impact of coffee on oral health. Interestingly they concluded, “Coffee consumption did not have an adverse effect on periodontal health, and instead, may have protective effects against periodontal disease [gum disease].”

Shockingly, 1 out 2 American adults over the age of 30 have periodontal disease, according to recent findings from the Centers for Disease Control and Prevention (CDC). That means bacteria is in half of our mouths all the time. Yikes! break out the mouthwash! Periodontal diseases range from simple gum inflammation to serious disease that results in major damage to the soft tissue and bone that support the teeth. In the worst cases, teeth are lost. This doesn’t mean coffee is the answer to this major problem but we all need to start thinking about maintaining a healthier smile. Our mouth provides us with nourishment, kisses, and most importantly communication so maintaining a healthy mouth will keep you and others around you happy!

PR Social

So, you think to yourself a coffee is probably not the best thing to choose for conscious health benefits but researchers from Boston University’s Henry M. Goldman School of Dental Medicine have found that coffee can help fight against gum disease.

Periodontal diseases range from simple gum inflammation to serious disease that results in major damage to the soft tissue and bone that support the teeth. In the worst cases, teeth are lost.

One out of every two American adults aged 30 and over has periodontal disease, according to recent findings from the Centers for Disease Control and Prevention (CDC).

## III. JavaScript for Interactivity This JavaScript uses jQuery to handle the clicks on the navigation items, showing and hiding the corresponding content. WordPress includes jQuery by default, so we'll use that. The **best way** to add this is via a plugin like "Code Snippets" or "Insert Headers and Footers," ensuring it loads after jQuery and on the frontend. ```javascript jQuery(document).ready(function($) { // Listen for clicks on any navigation item $('.iverson-scanning-systems-nav-item').on('click', function() { // 1. Remove 'active' class from previously active nav item $('.iverson-scanning-systems-nav-item').removeClass('active'); // 2. Hide previously active content item by removing 'active' class $('.iverson-scanning-systems-content-item').removeClass('active'); // 3. Add 'active' class to the clicked navigation item $(this).addClass('active'); // 4. Get the ID of the content item to show (from the data-target attribute) var targetId = $(this).data('target'); // 5. Show the corresponding content item by adding 'active' class $('#' + targetId).addClass('active'); }); });

START TYPING AND PRESS ENTER TO SEARCH