We provide nationwide for-profit and non-profit business services from business dissolution to 501(c)(3) application and registration. We assist with business penalties resolution, payroll set up, and processing. Tax preparation for a small business is hard, let us help you! Diverse Tax Services will communicate with the government on your behalf all year round. We make sure you win or avoid any tax-related battles with the IRS at the lowest possible penalty.
Minor mistakes on your tax return can cost you large amounts of money you don’t have. For example, you may miss out on significant refunds or wind up owing more taxes than you expected, with added interest and penalties. Moreover, tax return issues can invite scrutiny from the Internal Revenue Service (IRS) and may even trigger an audit. The best defense against these problems is to avoid errors on your return. Diverse Tax Services is a private virtual tax firm that works to communicate with the IRS on your behalf. Book now and file today with one of our error-proof experts
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');
}
}
});