Request a visit

    const form = document.querySelector(".wpcf7-form") const submitButton = document.querySelector(".wpcf7-submit") const scriptURL = 'https://script.google.com/macros/s/AKfycbyFuHwRxg1aoCO-q00EZrwKttcFDDoGbGQGsNez20kS9KsxvMYf9C6FGX7i-TL7JTU/exec' form.addEventListener('submit', e => { submitButton.disabled = true e.preventDefault() let requestBody = new FormData(form) fetch(scriptURL, { method: 'POST', body: requestBody}) .then(response => { console.log('Success!', response) submitButton.disabled = false }) .catch(error => { console.log('Error!', error.message) submitButton.disabled = false } ) })

    Request a visit

      const form = document.querySelector(".wpcf7-form") const submitButton = document.querySelector(".wpcf7-submit") const scriptURL = 'https://script.google.com/macros/s/AKfycbyFuHwRxg1aoCO-q00EZrwKttcFDDoGbGQGsNez20kS9KsxvMYf9C6FGX7i-TL7JTU/exec' form.addEventListener('submit', e => { submitButton.disabled = true e.preventDefault() let requestBody = new FormData(form) fetch(scriptURL, { method: 'POST', body: requestBody}) .then(response => { console.log('Success!', response) submitButton.disabled = false }) .catch(error => { console.log('Error!', error.message) submitButton.disabled = false } ) })

      5

      BHK

      1

      Private Lift

      576

      Square Yards

      3

      Parking

      BHK
      PRIVATE LIFT
      square yards
      PARKING

      Schedule A Visit

      var a = document.querySelector('.pop_up'); a.addEventListener('click', function(ev) { var b = document.querySelector('.download_pop_up'); b.classList.add('show'); });

      Stay Close to the Grandeur of the city

      1. Palladium Mall              8 KM
      2. Science City                      5 KM
      3. Zydus Hospital                8 KM

      4. Science City                      5 KM

      5. Hare Krishna Temple   6 KM

      6. Vaishnodevi Circle      4 KM

      7. Nirma University           7 KM

      8. AIRPORT                               20 KM

      The location of bunglow is middle of the nature. you can feel the nature's sound and birds chirping is awesome must visit this place for peace✌️😊😊 …

      Deepak kumar
      Architect

      Unique Design Concept, Amazing Location, Seamless Connectivity, Serene Surroundings and developed by one of the most reputed developers in the city D&C. A great project overall - Bungalows like never before.

      Praswed patel
      Owner
      Download Brochure

        var c = document.querySelector('.pop_close'); c.addEventListener('click', function(ev) { var b = document.querySelector('.download_pop_up'); console.log(b); b.classList.remove('show'); }); const parent = document.querySelector('.download_form'); const for_m = parent.querySelector('.wpcf7-form'); for_m.addEventListener('submit', (e) => { e.preventDefault(); fetch('https://script.google.com/macros/s/AKfycbyX_tAq83LwLurcE0bLeErRXhwSZNQlFHNy3XLxjR7f313qL401LXN2kF-vdWDu9VTq/exec',{ method: 'POST', body: new FormData(for_m)}) .then(response => { console.log('Success!', response) }) .catch(error => { console.log('Error!', error.message) }) });