Jai Respi

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

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.

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

Patient Testimonials

Discover how JAI has significantly improved the lives of patients.

JAI in the News

JAI in the spotlight

Scroll to Top

Do you cough more than the average person?

Do you have a cough that won’t go away?

Do you feel short of breath when performing activities you used to manage easily?

Do you experience wheezing or whistling in your chest, especially at night?

Do you find it hard to catch your breath after exercising or physical exertion?

Do you wake up at night with difficulty breathing?

(The above is for information and educational purposes only and does not constitute medical advice or diagnosis or treatment of any disease. You should seek medical advice from a registered healthcare professional.)

Do you cough several times most days?

Do you bring up phlegm or mucus most days?

Do you feel breathless when hurrying or walking up a slight hill?

Do you avoid activities because of breathlessness?

Do you feel like your chest is tight when breathing?

Do you experience frequent respiratory infections or colds?

(The above is for information and educational purposes only and does not constitute medical advice or diagnosis or treatment of any disease. You should seek medical advice from a registered healthcare professional.)

Do you have nasal symptoms (sneezing, runny nose, and blocked nose) in the past year in absence of cold or flu?

Do you have repeated sneezing, especially in the early hours of the morning?

Do you have itchy watery eyes along with nasal symptoms?

Do you have nasal symptoms across the year?

Do you use nasal sprays frequently?

Do you feel that your nasal symptoms worsen in dusty environments?

(The above is for information and educational purposes only and does not constitute medical advice or diagnosis or treatment of any disease. You should seek medical advice from a registered healthcare professional.)