LG Essential 24" FHD IPS Monitor 100Hz - LG | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
LG

LG Essential 24" FHD IPS Monitor 100Hz

SKU: 24MS500-B.AFAQ
R 1 759.00 R 2 549.00
You save R 790.00 (31%)
Only 1 left!
Only 1 left in stock - order soon!
You save R 790.00 (31% off)

The LG Essential 24MS500 24" FHD IPS Monitor is your ideal companion for both work and play, delivering clear visuals, smooth performance, and a sleek modern design—all in a compact footprint. Perfect for home or office users, this monitor makes everyday tasks such as emailing, browsing, document...

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

The LG Essential 24MS500 24" FHD IPS Monitor is your ideal companion for both work and play, delivering clear visuals, smooth performance, and a sleek modern design—all in a compact footprint. Perfect for home or office users, this monitor makes everyday tasks such as emailing, browsing, document editing, and streaming effortless and visually enjoyable. Its Full HD 1920 x 1080 resolution paired with IPS technology ensures vibrant colours and consistent clarity across a 178° wide viewing angle, so you can work or watch from any position without colour shift.

Experience ultra-smooth motion thanks to the 100Hz refresh rate and 5ms (GTG) response time, reducing motion blur and screen tearing for more fluid visuals—ideal for both productivity and casual gaming. Gamers will appreciate built-in features like Dynamic Action Sync for reduced input lag, Black Stabilizer to enhance visibility in dark scenes, and an on-screen Crosshair for increased accuracy in first-person shooters. Whether you’re managing spreadsheets or immersed in a digital battle, the LG Essential 24MS500 keeps your visuals sharp and responsive.

This monitor is as practical as it is stylish. The three-sided virtually borderless design not only provides a more immersive viewing experience but also adds a minimalist touch to your desktop. Customize your display with OnScreen Control software, which lets you split your screen or adjust key settings with ease. Plus, Reader Mode helps reduce blue light exposure, supporting more comfortable viewing during long sessions—perfect for work-from-home setups or late-night browsing.

Adjustable tilt functionality allows you to find your perfect viewing angle, and the 75 x 75mm VESA mount compatibility gives you flexible installation options. With dual HDMI ports and headphone out, this monitor fits easily into any modern workspace or gaming setup. Backed by a 3-Year Carry-In Warranty, the LG 24MS500 blends performance, ergonomics, and reliability—making it the essential monitor choice for everyday excellence.

FEATURES:

  • 23,8" FHD (1920 x 1080) IPS Panel
  • 100Hz Refresh Rate
  • 250 Brightness [cd/m²]
  • Super Resolution+
  • 2x HDMI Ports
  • Tilt Functionality
  • 75 x 75 VESA Mountable
  • 3-Side Virtually Borderless Design
  • 3 Year Carry-In Warranty

SPECIFICATIONS:

  • Listing Screen Size: 24"
  • Actual Screen Size: 23.8"
  • Screen Type: IPS
  • Resolution: 1920 x 1080
  • Aspect Ratio: 16:9
  • Brightness [cd/m²]: 250
  • Contrast Ratio: 1000:1
  • Response Time: 5ms (GtG at Faster)
  • Refresh Rate: 100Hz
  • HDMI: 2 x HDMI ports
  • Audio: Headphone out 3-Pole (Sound Only)
  • Tilt: Adjustable Tilt
  • Wall Mountable: 75 x 75 mm
  • Warranty: 36 Months Carry-in Warranty

WHAT'S IN THE BOX:

  • LG Essential 24" FHD IPS Monitor 100Hz - Black x1
  • Power Cable x1
  • HDMI Cable x1
Brand LG
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate 100Hz
Cpu -
Cpu Socket -
Warranty 36 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

-10%
LG 34" IPS Panel Ultra-wide Monitor - 75Hz
LG

LG 34" IPS Panel Ultra-wide Monitor - 75Hz

R 7 539.00 R 8 399.00

Save R 860.00

Out of Stock

-49%
LG Essential 22" FHD VA Monitor 60Hz with FreeSync
LG

LG Essential 22" FHD VA Monitor 60Hz with FreeSync

R 1 289.00 R 2 549.00

Save R 1 260.00

Out of Stock

-8%
LG UltraWide 29" FHD IPS Monitor 100Hz
LG

LG UltraWide 29" FHD IPS Monitor 100Hz

R 4 599.00 R 4 999.00

Save R 400.00

In Stock

-16%
MSI MON PRO IPS  25 1080P 120HZ 1MS
MSI

MSI MON PRO IPS 25 1080P 120HZ 1MS

R 2 509.00 R 2 999.00

Save R 490.00

In Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!