// Disable Ctrl+U and Ctrl+P document.addEventListener('keydown', function (e) { // Disable Ctrl+U if (e.ctrlKey && e.key.toLowerCase() === 'u') { e.preventDefault(); alert("wrong key."); } // Disable Ctrl+P if (e.ctrlKey && e.key.toLowerCase() === 'p') { e.preventDefault(); alert("wrong key."); } }); document.addEventListener('keyup', (e) => { if (e.key === 'PrintScreen') { // Create a div element that covers the entire screen const blankScreenDiv = document.createElement('div'); blankScreenDiv.id = 'blank-screen-overlay'; // Add an ID for easier reference blankScreenDiv.style.position = 'fixed'; blankScreenDiv.style.top = '0'; blankScreenDiv.style.left = '0'; blankScreenDiv.style.width = '100vw'; blankScreenDiv.style.height = '100vh'; blankScreenDiv.style.backgroundColor = 'black'; // Or any color you prefer blankScreenDiv.style.zIndex = '99999'; // Ensure it's on top of everything // Append the div to the body document.body.appendChild(blankScreenDiv); // Attempt to clear the clipboard (not guaranteed to work in all browsers/contexts) navigator.clipboard.writeText(''); // IMPORTANT: To keep it blank until refresh, we do NOT remove the div here. // It will persist until the page is reloaded or navigated away from. } }); document.addEventListener('keydown', function(e) { // Check for Ctrl+S (or Cmd+S on Mac) if ((e.ctrlKey || e.metaKey) && e.key === 's') { e.preventDefault(); // Prevent the default browser save action alert('wrong key.'); } }); document.addEventListener('contextmenu', function(e) { // e.preventDefault(); // Uncomment to disable right-click entirely }); // Disable text selection document.addEventListener('selectstart', function (e) { e.preventDefault(); }); // Disable keyboard copy shortcut (Ctrl+C, Command+C) document.addEventListener('keydown', function (e) { if ((e.ctrlKey || e.metaKey) && e.key.toLowerCase() === 'c') { e.preventDefault(); } });
Meta Infotech IPO GMP 2025: Price, Lot Size, Allotment & Listing Details
Check the latest Meta Infotech IPO GMP today, IPO price band, lot size, allotment date & expected listing gains. Get all SME IPO updates for Meta Infotech in 2025.

Meta Infotech IPO GMP is currently gaining strong traction among investors looking for promising SME IPO opportunities in 2025. Meta Infotech, a technology solutions provider, is all set to debut in the market with its public issue. The Grey Market Premium (GMP) indicates a positive sentiment, suggesting strong listing gains potential.

The company’s IPO includes a fresh issue of equity shares intended to fund working capital, expansion, and general corporate purposes. As per the latest updates, the Meta Infotech IPO GMP is showing a premium in the range of ₹20–₹25, reflecting solid demand from both retail and HNI investors.

Key IPO Highlights:

IPO Timeline (Tentative)

  • Anchor Investor Bidding: July 3, 2025

  • IPO Opening Date: July 4, 2025

  • IPO Closing Date: July 8, 2025

  • Basis of Allotment Finalized: July 9, 2025

  • Refunds Initiated / Share Credit to Demat: July 10, 2025

  • IPO Listing Date: July 11, 2025, on BSE SME

  • IPO Type: SME

  • GMP Today: ₹20–₹25 (subject to market volatility)

  • Price Band: Yet to be announced

  • Lot Size: Expected around 1200 shares

Investors are advised to closely monitor the GMP trend and subscription status for better decision-making. A rising Meta Infotech IPO GMP often signals strong listing prospects, especially in a bullish market. Stay tuned for allotment and listing updates to make the most of this tech-focused SME IPO.

disclaimer
I’m Shivam Sharma, a passionate SEO Executive currently working at Finowings, I help position Finowings as a trusted name in the financial education and investment space. My goal is to deliver measurable SEO results that support the company's mission of empowering retail investors with timely and accurate market insights.https://www.finowings.com/IPO/live-ipo-gmp.php

What's your reaction?