top of page

Florida Inmate Search
 

Navigating the legal system can be challenging, but we're here to help!

 

Our resource page is designed to provide you with essential information quickly and easily.

 

Whether you need to locate a loved one in custody, find contact information for a specific facility, check court dates, or stay updated on recent courtroom proceedings, you'll find it all here. Simply click on the name of the County in Florida below to access the information you need. If your county's website isn't listed or a link is broken, call us at 239-332-2245 or connect with us on social media. We're dedicated to addressing your legal inquiries promptly.

Eco-Friendly Design

24/7 Support

Advanced Tech

Multilingual 
Functionality

bottom of page
import wixUsers from 'wix-users'; import wixLocation from 'wix-location'; // Assume your form is a Lightbox $w.onReady(function () { // Event handler for form submission $w("#submitButton").onClick(() => { // Get user details const user = wixUsers.currentUser; user.getEmail() .then((email) => { user.getRoles() .then((roles) => { const role = roles[0]; // Assuming there's at least one role const name = $w("#nameInput").value; // Get name from input field const email = $w(“#email).value; // Get email from input field // Generate Jotform prefill URL const formURL = `https://form.jotform.com/241645490601150${encodeURIComponent(name)}&email=${encodeURIComponent(email)}`; // Redirect to the Jotform wixLocation.to(formURL); }); }); }); });