NewHireFeedback
an official Florida government website

​Thank you for taking the time to let us know how we are doing. When you have finished filling out the survey below, please click Finish to submit it.

What internet browser are you using?

How did you find out about the Florida Child Support Services for Employers website?
Was it easy to use the Florida Child Support Services for Employers website?
Did you find the information you were looking for or complete the action you were trying to take?
Was the information you sought accurate?
Was the information you sought up-to-date?
Rate your overall experience.
If you experienced any problems, please provide us with details so we can improve your experience.

How can we improve the Florida Child Support Services for Employers website?

What services would you like us to provide through this website in the future?

If you would like us to get back with you about your concerns or suggestions, please enter your contact information.

/* Title: hideTopCancelSave.js Description: Hides the top toolbar (a duplicate of the buttom toolbar) found on form web pages Assumptions: (1) All toolbars reside in either a "ms-formtoolbar" class or "ms-toolbar" class element (2) The first occurrence of the the toolbar and the last occurence of it in the page, have identical input values (3) The toolbar, denotes with one of the aforementioned classes can be styles with "display:none" */ $(document).ready(function() { var toolBars; // all toolbars in document var toolBar1_inputs; //represents the first toolbar DOM element found var toolBar2_inputs; //represents the last toolbar DOM element found var lastToolBarIndex; //represents the index number of the last tool bar found /*get all form toolbars */ // get toolbars with class .ms-formtoolbar toolBars = document.querySelectorAll(".ms-formtoolbar"); // if no toolBars with class .ms-formtoolbar, get toolBars with class .ms-toolbar if ( toolBars == null || toolBars.length == 0) toolBars = document.querySelectorAll(".ms-toolbar"); //get the index number of the last toolbar in the document lastToolBarIndex = toolBars.length-1; //if there is more than one tool bar, make sure the last one isnt hidden, then hide the first one // do this if there is only 2 toolBars or if there are more than 2 if (toolBars != null && toolBars.length >= 2 && toolBars[lastToolBarIndex ].style.display != "none"){ /* check to make sure the first toolbar contains the exact same titled input buttons as the bottom toolbar */ //start by getting all inputs for first and last toolbars toolBar1_inputs = toolBars[0].querySelectorAll(".ms-formtoolbar input"); toolBar2_inputs = toolBars[ lastToolBarIndex ].querySelectorAll(".ms-formtoolbar input"); //make sure the toolbars contain the same number of inputs if ( toolBar1_inputs.length == toolBar2_inputs.length ) { // make sure each input in the first toolBar corresponds with those in the bottm toolBar for ( var i=0; i < toolBar1_inputs.length; i++ ) if( toolBar1_inputs[i].value != toolBar2_inputs[i].value ) return; } else return; } // end if ( toolBars != null && toolBars.length == 2 && toolBars[1].hidden == false ) .... else return; // set first toolbar not to display toolBars[0].style.display = "none"; }); // end $(document).ready(function()