Discover JAI
Everything you need to support your breathing journey.
JAI (Joint Airway Initiative) is a personalised respiratory care program designed to support your breathing journey and help you manage your condition with greater confidence. Through JAI, patients receive expert guidance on the correct inhaler technique, along with access to doctor-recommended virtual support services such as pulmonary physiotherapy, diet counselling, and yoga sessions that help improve breathing capacity and overall well-being.
The program also encourages therapy adherence, supporting patients in staying consistent with their prescribed treatment while receiving ongoing educational resources and guidance. With the right knowledge, lifestyle support, and expert assistance, JAI aims to help patients take control of their respiratory health and experience better breathing every day.
Join JAI
Get access to expert guidance, inhaler techniques, lifestyle programs, and trusted respiratory health resources.
<div id=”jai-appointment-form”>
<!– Google Font –>
<link href=”https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600&display=swap” rel=”stylesheet”>
<style>
#jai-appointment-form {
font-family: ‘Manrope’, sans-serif;
max-width: 650px;
}
.jai-row {
display: flex;
gap: 15px;
margin-bottom: 15px;
}
.jai-field {
flex: 1;
display: flex;
flex-direction: column;
}
label {
font-size: 14px;
margin-bottom: 5px;
color: #555;
}
.required {
color: red;
margin-left: 3px;
font-size: 12px;
}
input, select {
padding: 10px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 14px;
font-family: ‘Manrope’, sans-serif;
}
input:focus, select:focus {
border-color: #2b6cb0;
outline: none;
}
.checkbox-row {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
margin-top: 10px;
}
.checkbox-row a {
color: #2b6cb0;
text-decoration: none;
font-weight: 500;
}
button {
margin-top: 15px;
padding: 12px;
width: 140px;
background: #2b6cb0;
color: #fff;
border: none;
border-radius: 6px;
font-size: 15px;
cursor: pointer;
font-family: ‘Manrope’, sans-serif;
}
button:hover {
background: #1f4e85;
}
.error {
color: red;
font-size: 12px;
}
.helper-text {
font-size: 12px;
color: #777;
margin-top: 3px;
}
@media(max-width: 600px) {
.jai-row {
flex-direction: column;
}
}
</style>
<form id=”appointmentForm”>
<!– Language + Mobile –>
<div class=”jai-row”>
<div class=”jai-field”>
<label>Preferred Language <span class=”required”>*</span></label>
<select required name=”language”>
<option value=””>Select Language</option>
<option>English</option>
<option>Hindi</option>
<option>Gujarati</option>
<option>Punjabi</option>
<option>Assamese</option>
<option>Odia</option>
<option>Bengali</option>
<option>Telugu</option>
<option>Tamil</option>
<option>Kannada</option>
<option>Malayalam</option>
<option>Marathi</option>
</select>
</div>
<div class=”jai-field”>
<label>Mobile Number <span class=”required”>*</span></label>
<input type=”tel” id=”mobile” name=”mobile” placeholder=”10 Digit Mobile number” required>
<span id=”mobileError” class=”error”></span>
</div>
</div>
<!– Name + Email –>
<div class=”jai-row”>
<div class=”jai-field”>
<label>Full Name <span class=”required”>*</span></label>
<input type=”text” name=”full_name” required>
</div>
<div class=”jai-field”>
<label>Email <span class=”required”>*</span></label>
<input type=”email” name=”email” required>
</div>
</div>
<!– Referral Code –>
<div class=”jai-row”>
<div class=”jai-field”>
<label>Referral Code</label>
<input type=”text” id=”referralCode” name=”referral_code” placeholder=”Enter referral code (optional)”>
<span class=”helper-text”>Have a referral code? Enter here to get benefits</span>
</div>
</div>
<!– Demo Date + Time –>
<div class=”jai-row”>
<div class=”jai-field”>
<label>Device Demo Date <span class=”required”>*</span></label>
<input type=”date” id=”demoDate” name=”demo_date” required>
</div>
<div class=”jai-field”>
<label>Device Demo Time Slot <span class=”required”>*</span></label>
<select id=”timeSlot” name=”time_slot” required></select>
</div>
</div>
<!– State + Upload –>
<div class=”jai-row”>
<div class=”jai-field”>
<label>State <span class=”required”>*</span></label>
<select name=”state” required>
<option value=””>Select State</option>
<option>Maharashtra</option>
<option>Delhi</option>
<option>Karnataka</option>
<option>Tamil Nadu</option>
<option>Uttar Pradesh</option>
</select>
</div>
<div class=”jai-field”>
<label>Upload Prescription <span class=”required”>*</span></label>
<input type=”file” name=”prescription” accept=”.pdf,.jpg,.png” required>
</div>
</div>
<!– Terms –>
<div class=”checkbox-row”>
<input type=”checkbox” id=”terms” required>
<label for=”terms”>
I agree with all the terms & conditions mentioned
<a href=”#” target=”_blank”>JAI Policy</a> <span class=”required”>*</span>
</label>
</div>
<button type=”submit”>Submit</button>
</form>
<script>
// Generate time slots (9 AM to 5 PM, 20 min interval)
function generateTimeSlots() {
const select = document.getElementById(“timeSlot”);
select.innerHTML = ‘<option value=””>Select Time Slot</option>’;
let start = 9 * 60;
let end = 17 * 60;
for (let time = start; time < end; time += 20) {
let hour1 = Math.floor(time / 60);
let min1 = time % 60;
let time2 = time + 20;
let hour2 = Math.floor(time2 / 60);
let min2 = time2 % 60;
function format(h, m) {
let ampm = h >= 12 ? “pm” : “am”;
h = h % 12 || 12;
return `${h}:${m.toString().padStart(2, ‘0’)} ${ampm}`;
}
let slot = `${format(hour1, min1)} to ${format(hour2, min2)}`;
let option = document.createElement(“option”);
option.value = slot;
option.textContent = slot;
select.appendChild(option);
}
}
generateTimeSlots();
// Min date = tomorrow
const dateInput = document.getElementById(“demoDate”);
let now = new Date();
now.setDate(now.getDate() + 1);
dateInput.min = now.toISOString().split(“T”)[0];
// Mobile validation
document.getElementById(“mobile”).addEventListener(“input”, function() {
let value = this.value.replace(/\D/g, ”);
this.value = value;
document.getElementById(“mobileError”).innerText =
value.length !== 10 ? “Enter valid 10-digit number” : “”;
});
// Referral code uppercase
document.getElementById(“referralCode”).addEventListener(“input”, function() {
this.value = this.value.toUpperCase();
});
// Form validation
document.getElementById(“appointmentForm”).addEventListener(“submit”, function(e) {
const mobile = document.getElementById(“mobile”).value;
if (mobile.length !== 10) {
alert(“Please enter valid mobile number”);
e.preventDefault();
}
});
</script>
</div>
Understand Your Respiratory Conditions
Knowledge is the first step toward better breathing. Learn about common respiratory conditions, their symptoms, causes, and ways to manage them effectively.
Understanding Your Devices
Learn how inhalers and nebulisers work and how to use them correctly, so your treatment can support better breathing every day.
Inhalers
Understand how inhalers work and learn the right technique to get the best benefit from your treatment.
- Dry Powder Inhalers (DPI)
- Metered-Dose Inhalers (MDI)
- MDI with spacer
Nebulisers
Understand how nebuliserswork and learn the right technique to get the best benefit from your treatment.
- Jet Nebuliser
- Mesh Nebuliser
- Ultrasonic Nebuliser
Start YourJourney to Better Breathing
Recognizing symptoms early can help you manage respiratory conditions more effectively. Take a quick self-assessment to understand your risk and take the first step toward better breathing.
Asthma
A chronic condition where the airways become inflamed and narrow, making it difficult to breathe. Symptoms often include wheezing, coughing, and shortness of breath.
COPD
A progressive lung disease that blocks airflow and makes breathing increasingly difficult, commonly caused by long-term exposure to irritants like smoke.
Allergic Rhinitis
An allergic reaction that affects the nose, causing sneezing, congestion, runny nose, and itchy eyes when exposed to allergens like pollen or dust.
Healthy Lifestyle Habits for Better Breathing
Simple lifestyle changes can make a meaningful difference. Discover breathing exercises, yoga techniques, nutrition tips, and daily habits that support lung health.
Eat Well, Breathe Well
Explore simple, nutritious recipes that help you maintain a healthy lifestyle.
Garlic Broccoli Cream Soup
Egg & Avocado Power Bowl
Citrus-Tofu/Paneer Stir Fry
Tulsi-Infused Mung Congee (Porridge)
Beetroot Pulao
Lemon-Garlic Steamed Pomfret
Move More, Breathe Better
Simple exercises can make everyday breathing easier and help you stay energized.
Breathe Calm, Breathe Strong
Simple breathing techniques and yoga practices can help improve lung function and bring balance to your breath.
Food For Thought
Explore our blogs to gain a deeper insight into all aspects of respiratory health.
Our Experts Are Here To Guide You
Ritika Upadhyay
Gauresh Mungekar
Zeenat Parveen
Patient Testimonials
Discover how JAI has significantly improved the lives of patients.
Today was my first physiotherapy session for the breathing exercises on WhatsApp video. The physiotherapist was patient friendly and she demonstrated simple yet powerful breathing exercises. In addition to it she supervised my practice for the same. Also gave a few pieces of advice on do’s and don’ts. A simple, short and pleasant session.
JAI in the News
JAI in the spotlight