Diverse Tax Services, we are committed to providing accurate, reliable, and personalized tax solutions for individuals, families, and small businesses. Our experienced team works hard to simplify the tax preparation process while ensuring every client receives the attention and support they deserve. We stay current with the latest tax laws and regulations to help maximize refunds, minimize liabilities, and maintain compliance. Whether you need assistance with personal tax returns, business taxes, tax planning, or year-round support, we are dedicated to delivering professional service with integrity, transparency, and a commitment to your financial success.
Diverse Tax Services is the #1 virtual private tax firm that makes filing your taxes so easy it feels automated. Our team of experts has helped hundreds of families and Thousands of small business owners become 100% tax compliant while receiving maximum refunds in the process for the last 24 years. We understand how defeating it can feel to work hard all year just to have the IRS take more than their share of your profits, wages, and in some cases property because of filing errors.
We have maintained a five-star accreditation on BBB since 2008
We Offer a 1 Million Dollar refund protection policy on all returns we handle!
We will communicate with the Gove- rnment on your behalf year round
We resolve any tax-related issues at the lowest possible penalty
We will complete your filings quickly and accurately
We guarantee your max return
jQuery(document).ready(function ($) {
// Use event delegation to handle AJAX-loaded or dynamically rendered forms
$(document).on('blur', '.zip-lookup input', function () {
lookupZip($(this));
});
$(document).on('keydown', '.zip-lookup input', function (e) {
if (e.key === 'Enter') {
e.preventDefault();
lookupZip($(this));
}
});
function lookupZip($zipInput) {
var zip = $.trim($zipInput.val());
// Only lookup valid 5-digit US ZIP codes
if (!/^\d{5}$/.test(zip)) {
return;
}
// Find the matching City and State fields relative to the form container
var $form = $zipInput.closest('form');
var cityField = $form.find('.zip-city input');
var stateField = $form.find('.zip-state select');
// Fallback to global search if elements aren't found within a form wrapper
if (cityField.length === 0) cityField = $('.zip-city input');
if (stateField.length === 0) stateField = $('.zip-state select');
$.getJSON('https://api.zippopotam.us/us/' + zip)
.done(function (data) {
if (data.places && data.places.length > 0) {
var place = data.places[0];
var city = place['place name'];
var state = place['state abbreviation']; // e.g., "CA"
// Populate City
cityField.val(city).trigger('input').trigger('change');
// Populate State and trigger change for both standard and Select2 dropdowns
stateField.val(state).trigger('change');
if (stateField.hasClass('select2-hidden-accessible')) {
stateField.trigger('change.select2');
}
} else {
clearFields(cityField, stateField);
}
})
.fail(function () {
console.log('ZIP code lookup failed.');
clearFields(cityField, stateField);
});
}
function clearFields(cityField, stateField) {
cityField.val('').trigger('input').trigger('change');
stateField.val('').trigger('change');
if (stateField.hasClass('select2-hidden-accessible')) {
stateField.trigger('change.select2');
}
}
});