North Muscat Logistics

Client Portal | Relocation & Freight Solutions
Call Us: +968 78646556

Track Your Shipment

Enter your AWB or Tracking Number to get real-time updates.

Status:

Current Location:

Estimated Delivery:

Request a Quote

// Submit Quote Function using Fetch API async function submitQuote(e) { e.preventDefault(); const payload = { service: document.getElementById('serviceType').value, origin: document.getElementById('origin').value, destination: document.getElementById('destination').value, email: document.getElementById('email').value, bot_field: document.getElementById('bot_field').value // Add the honeypot field }; try { const response = await fetch('api/quote.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payload) }); const responseData = await response.json(); if (response.ok) { alert(`Thank you! A pricing agent will contact ${payload.email} shortly.`); document.getElementById('quoteForm').reset(); } else if (response.status === 429) { // Handle the Rate Limit warning alert(responseData.error); } else { alert("There was an error submitting your request."); } } catch (error) { alert("Network error. Please try again."); } }