Make every km count

Make every km count

Select Your Car

NEW

Kylaq

Starts from
₹ 7.54 Lakh*

NEW

Kodiaq

Starts from
₹ 39.99 Lakh*

Slavia

Starts from
₹ 9.99 Lakh*

Kushaq

Starts from
₹ 10.61 Lakh*

*Skoda T&C Apply. Delivery of the car is subject to stock availability. #Special price and benefits offer is applicable on select variants for limited period & limited quantity. Specifications given differ from model to model. **Corporate/Loyalty/Exchange/Special offers cannot be clubbed together. Offers applicable on select variants. Offers may vary from model and variant to variant market wise.

Enquire Now!

document.addEventListener('DOMContentLoaded', function () { const inputs = document.querySelectorAll('input[type="number"]'); inputs.forEach(function(input) { // Mobile keyboard input.setAttribute('inputmode', 'numeric'); // Prevent more than 10 digits input.addEventListener('keydown', function(e) { // Allow control keys const allowedKeys = [ 'Backspace', 'Delete', 'ArrowLeft', 'ArrowRight', 'Tab' ]; if (allowedKeys.includes(e.key)) { return; } // Allow only numbers if (!/^\d$/.test(e.key)) { e.preventDefault(); return; } // First digit must be 6-9 if (this.value.length === 0 && !['6','7','8','9'].includes(e.key)) { e.preventDefault(); return; } // Max 10 digits if (this.value.length >= 10) { e.preventDefault(); } }); }); });