Ring Road Škoda is the leading Škoda dealership in Delhi, NCR offering Sales & Service of Škoda cars across 5 outlets located at prime locations in Delhi and Haryana.
Trustindex verifies that the original source of the review is Google.
Mr. Mukesh is very nice person and everything is good there in the showroom.
Please buy cars at his showroom.
Posted on Google
Tarun jamdagni
Trustindex verifies that the original source of the review is Google.
It was a wonderful experience the staff was very nice and friendly
Posted on Google
Surinder Bist
Trustindex verifies that the original source of the review is Google.
Interaction with Mukesh was superb and overall experience and as good.
Posted on Google
pramila hansda
Trustindex verifies that the original source of the review is Google.
The team was wonderful. Specially Mr Vivek. He has helped me all the way properly. Thank you so much.
Posted on Google
Sangam chhatwal
Trustindex verifies that the original source of the review is Google.
"Excellent experience at Ring Road skoda paschim vihar! The staff were knowledgeable, helpful, and courteous. The facility was well-maintained, and the car selection was impressive. Highly recommend for anyone looking to purchase a Skoda!
Posted on Google
Javed Rafi
Trustindex verifies that the original source of the review is Google.
Excellent service from Ring Road Skoda Paschim Vihar. Timely delivery from the supportive staff.
Posted on Google
yash sharawat
Trustindex verifies that the original source of the review is Google.
Overall experience is good. Mr deepak tomar attend us well and we had a good car delivery over there.
Posted on Google
RUPESH KALRA
Trustindex verifies that the original source of the review is Google.
Great experience
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();
}
});
});
});